Ios 通过iphone sdk中的UIDocumentInteraction在微信中共享文本

Ios 通过iphone sdk中的UIDocumentInteraction在微信中共享文本,ios,iphone,ipad,wechat,Ios,Iphone,Ipad,Wechat,我们如何在微信中与UIDocumentInteraction controller或UIActivityViewController共享文本?我正在使用此功能,但未成功: UIDocumentInteraction*docController=[UIDocumentInteractionController interactionControllerWithURL:fileURL]; self.docController.delegate=self docController.UTI=@“公共文

我们如何在微信中与UIDocumentInteraction controller或UIActivityViewController共享文本?我正在使用此功能,但未成功:

UIDocumentInteraction*docController=[UIDocumentInteractionController interactionControllerWithURL:fileURL]; self.docController.delegate=self

docController.UTI=@“公共文本”


据我所知,在iPhone SDK内置方法中,您无法在微信中共享文本。我尝试了“微信活动”,可以发送消息或图像,但一次只能发送一条,不能同时发送。
    NSString * msg = @"Hello WEChat";
    NSString * urlWhats = [NSString stringWithFormat:@"%@",msg];
    //controller.UTI = urlWhats;

    docController.annotation = [NSDictionary dictionaryWithObject:@"This is testing" forKey:@"Public Text"];