Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想要一个按钮操作来调用自定义序列。我的自定义序列称为“ClockSeque”。我已经搜索了所提出的问题,但找不到这个问题的答案。任何帮助,将不胜感激。谢谢。
PS:我已经创建了名为“ClockSeque.h & ClockSeque.m”的 .h 和 .m 文件,它们属于 UIStoryboardSegue 类。
在 IB 中,将 segue 从当前视图控制器连接到目标视图控制器。命名 segue,将 segue 的类型设置为 custom,并给你自定义 segue 类的名称。最后,在按钮动作调用-performSegueWithIdentifier:sender:中使用 segue 的名称。
-performSegueWithIdentifier:sender:
希望有帮助。