0

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];
4

1 回答 1

0

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

[mySLComposerSheet setInitialText:[NSString stringWithFormat:@"My message %@",_myUILable.text]];
于 2013-01-01T23:17:57.007 回答