ios - 如何在另一个执行 segue 的 View Controller 上获取按钮标题?
<p><p>1) 我在第一个 ViewController 上有一个 2ViewController ,其按钮为
a) 本地和 b) 国际
我在另一个 View 上使用分段控制,其中它有 2 条本地和国际
现在,当我执行 segue 时,我需要获取标题或一些数据,以便我可以确定应该首先显示哪个栏是本地栏还是国际栏。</p>
<p>简单地执行 segue 并不会获得按钮事件传递的数据。
那么如何通过执行 segue 在两个不同的按钮上传递 2 个不同的数据?</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>如果 segue 连接到您的按钮,那么它将是 prepareForSegue 中的发送者。所以在 prepareForSegue 中写下这个。</p>
<pre><code> NextViewController *vc = segue.destinationViewController;
UIButton *dayButton = (UIButton*)sender
vc.titlestr = sender.titleLabel.text;
</code></pre></p>
<p style="font-size: 20px;">关于ios - 如何在另一个执行 segue 的 ViewController 上获取按钮标题?,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/29540640/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/29540640/
</a>
</p>
页:
[1]