我创建具有“与 facebook 共享”功能的应用程序我使用此代码进行 facebook 共享
[facebookViewController setInitialText:[NSString stringWithFormat:@"via %@", self.randomGame.name]];
NSLog(@"%@", self.resultImageView.image);
[facebookViewController addImage:self.resultImageView.image];
[facebookViewController setCompletionHandler:^(SLComposeViewControllerResult result){
if (result == SLComposeViewControllerResultCancelled) {
NSLog(@"Dialog Did Cancel");
}
}];
[self presentViewController:facebookViewController animated:YES completion:nil];
我已经使用 SLComposeViewController 分配/初始化 facebookViewController 对象。
第一次分享没有问题。但是,我第二次分享我得到这样的阴影屏幕
谁能帮忙?感谢提前。