2
我使用這些代碼來顯示在iOS5的模擬器的Twitter對話在iOS5模擬器中使用TWTweetComposeViewController時如何知道設置按鈕點擊?
-(void)showTwitter{
TWTweetComposeViewController *tweet = [[TWTweetComposeViewController alloc] init];
[tweet setInitialText:self.textView.text];
[tweet setCompletionHandler:^(TWTweetComposeViewControllerResult result) {
if (result == TWTweetComposeViewControllerResultDone) {
NSLog(@"OK");
}
else{
NSLog(@"CANCEL");
//How to know setting button click to redirect to setting menu
//[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"prefs:root=TWITTER"]];
}
[self dismissModalViewControllerAnimated:YES];
}];
[self presentModalViewController:tweet animated:YES];
}
嘰嘰喳喳的默認AlertView顯示:
的問題是,當我點擊設置或取消按鈕,它總是去「取消」。 我需要抓住設置按鈕重定向到設置菜單。怎麼做?
感謝您的信息。我在iOS6模擬器中測試,它的重定向OK。我沒有iOS5設備進行測試。不知道它可以重定向或不。 – Jack
您可以使用模擬器來測試此功能。 – Raptor
iOS5模擬器不重定向,與單擊取消操作相同 – Jack