ios - 如何使用 prepareForSegue 从 UIButton 传递字符串
<p><p>我从 UIButton 向我的下一个 UITtableviewcontroller 发送一个字符串,该字符串是 UIButton 标题(星期一 ... 星期日),NSPredicate 使用该字符串按天过滤我的表信息。</p>
<pre><code>@property (nonatomic, weak) NSString *dayOTW;
</code></pre>
<hr/>
<pre><code>- (IBAction)selectDay:(UIButton *)sender {
UIButton *dayW = sender;
dayOTW = dayW.titleLabel.text;
NSLog(@"button press = %@", dayOTW);
}
</code></pre>
<hr/>
<pre><code>2012-05-01 06:23:21.731 passingdata button press = Monday
</code></pre>
<p>然后转到我的下一个屏幕</p>
<pre><code>- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
{
// Make sure your segue name in storyboard is the same as this line
if ([ isEqualToString:@"SendWeekDay"])
{
// Get reference to the destination view controller
ViewController *vc = ;
// Pass any objects to the view controller here, like...
vc.dayOTW = dayOTW;
}
}
</code></pre>
<p>当我第一次选择按钮时,我的表格中不会显示任何信息,如果我返回并再次选择按钮,我的表格会显示当天的正确信息。</p>
<p>我做错了什么? </p>
<p>与上述有关的另一个问题。
我一周每天都有 7 个 UIButtons,如何用一个 segue 从所有 UIButtons 中分离?</p>
<p>谢谢</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>在您的 IBAction 方法之前调用 segue,因此在您第一次单击它时不会设置该变量。 </p>
<p>如果 segue 连接到你的按钮,那么它将是 prepareForSegue 中的 <code>sender</code>,所以你并不需要 action 方法。只需在 prepareForSegue 中获取标题即可:</p>
<pre><code>UIButton *dayButton = (UIButton*)sender
vc.dayOTW = sender.titleLabel.text;
</code></pre>
<p>要将相同的 segue 连接到所有按钮,您必须从每个按钮按住 ctrl 并拖动,但为所有 segue 提供相同的标识符。这在 Storyboard上看起来很乱,所以另一种方法是直接从源 ViewController 创建一个单一的 segue,并在 action 方法(在这种情况下你需要它,并且将连接到你的所有按钮)调用 <code>performSegueWithIdentifier:sender:</code>:</p>
<pre><code>-(IBAction)dayButtonPressed:(UIButton*)sender
{
;
}
</code></pre>
<p>这会将按钮作为发送者传递给 <code>performSegue</code> 方法,因此您可以使用上面列出的代码。 </p></p>
<p style="font-size: 20px;">关于ios - 如何使用 prepareForSegue 从 UIButton 传递字符串,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/10393937/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/10393937/
</a>
</p>
页:
[1]