0
我有一些非常簡單的代碼,我在iOS 6中運行時,一切工作爲我所有的設備和模擬器,但我的用戶之一(iPhone 3GS,的iOS 6.1 .2)有問題。當他們把這個代碼SLComposeViewController顯示Twitter的對話,但他們無法取消,編輯或發送。他們說這些代碼適用於Facebook。所以,我不知所措。的iOS 6 SLComposeViewController爲SLServiceTypeTwitter無法取消,編輯或發送
也許使SLComposeViewController強大的屬性?
任何幫助,將不勝感激。
謝謝。
SLComposeViewController *sc=[SLComposeViewController composeViewControllerForServiceType:SLServiceTypeTwitter];
[sc setInitialText:[NSString stringWithFormat:@"Check out %@ app", [[ConfigUtil getConfig] objectForKey:@"app_title"]]];
[sc addURL:[NSURL URLWithString:[[ConfigUtil getConfig] objectForKey:@"app_store_url"]]];
[sc setCompletionHandler:^(SLComposeViewControllerResult result){
[self dismissViewControllerAnimated:YES completion:nil];
}];
[self presentViewController:sc animated:YES completion:nil];