このサンプルコードを学び、アプリに実装しようとしましたが、写真が表示されません。
- (IBAction)facebookBtn_down:(id)sender {
if (osVer >= 6.0) {
SLComposeViewController *fbVC = [SLComposeViewController composeViewControllerForServiceType:SLServiceTypeFacebook];
[fbVC setInitialText:apple_F_MSG];
[fbVC addURL:[NSURL URLWithString:APP_URL]];
[fbVC setCompletionHandler:^(SLComposeViewControllerResult res) {
if (res == SLComposeViewControllerResultDone) [self AlertToukou];
}];
[self presentModalViewController:fbVC animated:YES];
} else {
DEFacebookComposeViewController *fbVC = [[[DEFacebookComposeViewController alloc] init] autorelease];
self.modalPresentationStyle = UIModalPresentationCurrentContext;
[fbVC setInitialText:apple_F_MSG];
[fbVC addURL:[NSURL URLWithString:APP_URL]];
[fbVC setCompletionHandler:^(DEFacebookComposeViewControllerResult res) {
if (res == DEFacebookComposeViewControllerResultDone) [self AlertToukou];
[self dismissModalViewControllerAnimated:YES];
self.modalPresentationStyle = UIModalPresentationFullScreen;
}];
[self presentModalViewController:fbVC animated:YES];
}
}
アドバイスをください、ありがとう!