gpt4 book ai didi

iphone - 如何使用 TWTweetComposeViewController 发送多个 UITextField 推文?

转载 作者:行者123 更新时间:2023-11-29 04:51:17 25 4
gpt4 key购买 nike

我正在尝试使用 TWTweetComposeViewController 在 iOS 5 中执行一条简单的推文。如果有一个文本字段,它就可以工作,但如何从 3 个 UITextField 创建一串文本?

这是标题文本:

@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 个值。

最佳答案

使用 NSString+stringWithFormat: 方法,传入三个文本字段中的值:

NSString *text = [NSString stringWithFormat:@"%@ %@ %@", 
theWorld.text, isGreen.text, andBeautiful.text];
[tweetSheet setInitialText:text];

关于iphone - 如何使用 TWTweetComposeViewController 发送多个 UITextField 推文?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8783931/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com