除了我的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];
答案 0 :(得分:0)
啊,经过多年的修复,需要占位符
[mySLComposerSheet setInitialText:[NSString stringWithFormat:@"My message %@",_myUILable.text]];