设置初始文本Social Frameworks iOS 6

时间:2013-01-01 23:13:49

标签: objective-c ios cocoa-touch ios6

除了我的setInitialText字符串之外,如何为tweet / fb作曲家表添加UILabel值。

我尝试以多种方式添加myUILabel.text,最终导致目前尚未使用的崩溃或数据参数

   mySLComposerSheet = [[SLComposeViewController alloc] init];
   mySLComposerSheet = [SLComposeViewController composeViewControllerForServiceType:SLServiceTypeFacebook]; ///
   [mySLComposerSheet setInitialText:@"My message"]; ///can I add UI label value here?
   [self presentViewController:mySLComposerSheet animated:YES completion:nil];

1 个答案:

答案 0 :(得分:0)

啊,经过多年的修复,需要占位符

[mySLComposerSheet setInitialText:[NSString stringWithFormat:@"My message %@",_myUILable.text]];