我刚刚将我的应用程序更新到iOS 6,SetInitialText
的{{1}}功能已停止工作。作曲家只是空着。我正在使用MonoTouch,还有其他人看过这个问题吗?相同的代码在iOS 5设备上仍能正常运行。
答案 0 :(得分:1)
使用以下代码对我的预期效果如下:
var button2 = UIButton.FromType (UIButtonType.RoundedRect);
button2.Frame = new RectangleF (0f, 0f, 300f, 40f);
button2.SetTitle ("Tweet!", UIControlState.Normal);
button2.TouchUpInside += (sender, e) => {
var tvc = new TWTweetComposeViewController ();
tvc.SetInitialText ("Here is a tweet...");
tvc.SetCompletionHandler ((result) => {
if (result == TWTweetComposeViewControllerResult.Cancelled) {
Console.WriteLine ("Cancelled sending the tweet!");
} else {
Console.WriteLine ("Tweet sent! hurrah!");
}
this.DismissModalViewControllerAnimated (true);
});
this.PresentModalViewController (tvc, true);
};
View.AddSubview (button2);
即使不推荐使用PresentModal和DismissModal,您是否有任何问题的示例代码?