1
一切工作正常,但它說「ios設備」,我希望它說實際的應用程序的名稱。我究竟做錯了什麼?使用Social Framework通過iOS 6應用程序共享內容說iOS設備?
這裏是我的代碼:
- (IBAction)doFacebook:(id)sender{
//check to see if facebook account exists
if ([SLComposeViewController isAvailableForServiceType:SLServiceTypeFacebook]) {
// Create the view controller defined in the .h file
fb=[SLComposeViewController composeViewControllerForServiceType:SLServiceTypeFacebook];
// make the default string
NSString *FBString= [NSString
stringWithFormat:@"%@\r via #GibberishGenerator", gibText.text];
[fb setInitialText:FBString];
// show the controller
[self presentViewController:fb animated:YES completion:nil];
}
}
什麼iOS設備說?哪個社交框架?你有沒有編寫任何代碼,或者我們應該猜測它是什麼?你期望它說什麼?它在哪裏說iOS設備? etc ... etc ... – Fogmeister 2013-05-07 15:32:48
對不起,我不清楚。牆上的實際份額是「昨天通過iOS」。在其他應用程序中,我看到它說「通過blahblah應用程序發佈」 – jini 2013-05-07 15:36:21
我也添加了代碼 – jini 2013-05-07 15:37:52