我正在使用 TWTweetComposeViewController,当我将初始文本设置为屏幕标题时,文本光标出现在主题标签之后,我希望它出现在主题标签之前。有没有办法做类似 cursor=(0,0) 或类似的事情?我查看了文档,那里什么都没有。
作为参考,这就是我正在使用的。
TWTweetComposeViewController *tweetSheet = [[TWTweetComposeViewController alloc]init];
[tweetSheet setInitialText:[NSString stringWithFormat:@"#%@", self.title]];
tweetSheet.completionHandler = ^(TWTweetComposeViewControllerResult result){
[self dismissModalViewControllerAnimated:YES];
};
[self presentModalViewController:tweetSheet animated:YES];