ツイートボタンを設置しようとしています。「セレクター 'canSendTweet'の既知のクラスメソッドがありません」というエラーが表示されることを除いて、すべてのコードが機能しているようです。何か提案はありますか?
- (IBAction)tweetTapped:(id)sender
{
//Check if the device can send tweets
if ([SLComposeViewController canSendTweet])
{
//Create tweet sheet and set initial text
SLComposeViewController *tweetSheet =
[[SLComposeViewController alloc] init];
[tweetSheet setInitialText:@"this is a tweet from my app"];
[tweetSheet addURL:[NSURL URLWithString:@"http://www.iosdeveloperguide.com"]];
//show tweet sheet
[self presentViewController:tweetSheet animated:YES completion:nil];
}
else
{
//Device can not tweet. Show error Notification.
UIAlertView *alertview = [[UIAlertView alloc]
initWithTitle:@"Unable to Tweet"
message:@"Please ensure that you have at least one Twitter account setup and have internet connectivity"
delegate:self
cancelButtonTitle:@"OK"
otherButtonTitles:nil];
[alertview show];
}
}
@end