1) 我在第一个 View Controller 上有一个 2 View Controller ,其按钮为 a) 本地和 b) 国际 我在另一个 View 上使用分段控制,其中它有 2 条本地和国际 现在,当我执行 segue 时,我需要获取标题或一些数据,以便我可以确定应该首先显示哪个栏是本地栏还是国际栏。
简单地执行 segue 并不会获得按钮事件传递的数据。 那么如何通过执行 segue 在两个不同的按钮上传递 2 个不同的数据?
如果 segue 连接到您的按钮,那么它将是 prepareForSegue 中的发送者。所以在 prepareForSegue 中写下这个。
NextViewController *vc = segue.destinationViewController;
UIButton *dayButton = (UIButton*)sender
vc.titlestr = sender.titleLabel.text;
关于ios - 如何在另一个执行 segue 的 View Controller 上获取按钮标题?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29540640/
欢迎光临 OGeek|极客世界-中国程序员成长平台 (http://ogeek.cn/) | Powered by Discuz! X3.4 |