0

这样这样的问题中,我知道如何以编程方式UIViewImage推动新事物。UIViewController

但是我怎样才能在Storyboard中完全做到这一点?我喜欢Storyboard,并且不想xib到处都有多个文件。

我已经通过Storyboard启用了用户交互,但我仍然无法创建过渡......

在此处输入图像描述

4

1 回答 1

1
  1. 将 UIViewController 对象拖到 Storyboard 画布上
  2. 选择该 ViewController,然后在顶部菜单栏中,单击 Editor > Embed in > Navigation Controller。
  3. 将另一个 UIViewController 拖到 Storyboard 上
  4. 控制从第一个 UIViewController 拖动到新的 UIViewController 并从结果选项中选择 push。
  5. 单击创建的 Segue 并转到属性检查器并输入 Segue 的标识符。
  6. 在处理 UIImageView 水龙头的 ViewController 代码中,调用[self performSegueWithIdentifier:@"YourSegueIdentifier" sender:self];
于 2013-07-31T18:25:52.650 回答