0

我正在使用Socialize框架在 facebook 和 twitter 上共享。我完全不知道如何使用这个框架在 twitter 上共享超链接。我彻底检查了它的 twitter 共享文档,但没有运气。如果您有任何线索,请在推特上分享超链接。

谢谢

4

1 回答 1

0

是的,您可以进行以下分享。

#import "Social/SLComposeViewController.h"
#import "Social/SLRequest.h"
SLComposeViewController *socialVc=[SLComposeViewController composeViewControllerForServiceType:SLServiceTypeTwitter];
                    NSData *data = UIImageJPEGRepresentation(self.defaultImageView.image, 1.0);
                    [socialVc addImage:[UIImage imageWithData:data]];
                    [socialVc setInitialText:[NSString stringWithFormat:@"%@",@"hello"]];
                    [socialVc addURL:[NSURL URLWithString:@"www.xyz.com"]];
                    [self.navigationController presentViewController:socialVc animated:YES completion:nil];

希望这对您有所帮助。

于 2013-05-25T05:11:03.620 回答