TWTweetComposeViewController不允许编辑

时间:2012-09-29 01:03:12

标签: iphone ios

当我呈现TWTweetComposeViewController时,我能够在窗口中滚动消息,但我无法编辑文本。

以下是我用来呈现TWTweetComposeViewController的代码:

TWTweetComposeViewController *twitter = [[TWTweetComposeViewController alloc] init];
    [twitter addURL:article.articleURL];
    [twitter setInitialText:message];
    [viewController presentModalViewController:twitter animated:YES];

我在一个空项目中试过这个,它允许我编辑推文就好了。 我是否需要设置一个选项以允许推文可编辑?


编辑以澄清:

  • 我想我已经把它缩小到我的项目中不允许的东西 任何UITextView成为第一响应者
  • 我在我的app委托中创建了一个空的UIViewController,然后呈现 那里的Twitter控制器仍然无法编辑文本
  • 我也试过在这个空白控制器上添加一个UITextView 同样的事情发生了
  • UITextFields正常工作

1 个答案:

答案 0 :(得分:0)

根据Apple Docs,您无法在用户查看推文后更改推文。