我刚刚将我的应用程序更新到 iOS 6,并且该SetInitialText
功能TWTweetComposeViewController
已停止工作。作曲家只是空空如也。我正在使用 MonoTouch,还有其他人看到这个问题吗?相同的代码在我的 iOS 5 设备上仍然可以正常工作。
问问题
421 次
1 回答
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 已被弃用,您是否有任何问题的示例代码?
于 2012-09-30T22:26:56.610 回答