我正在尝试使用 TWTweetComposeViewController 从iOS 5发送一条简单的推文。如果有一个文本字段,它是如何工作的,但是如何从3个UITextFields创建一串文本?
以下是标题文字:
@property (nonatomic, strong) IBOutlet UITextField *theWorld;
@property (nonatomic, strong) IBOutlet UITextField *isGreen;
@property (nonatomic, strong) IBOutlet UITextField *andBeautiful;
实施:
{
TWTweetComposeViewController *tweetSheet =
[[TWTweetComposeViewController alloc] init];
[tweetSheet setInitialText:
theWorld.text];
[self presentModalViewController:tweetSheet animated:YES];
}
注意我此刻只有一个文本字段,它会发送输入文本。我不知道如何同时发布来自UITextField的所有3个值。
答案 0 :(得分:1)
使用+stringWithFormat:
的{{1}}方法,传入三个文字字段中的值:
NSString