首页 > 代码库 > Storyboards Tutorial (三)

Storyboards Tutorial (三)

这一节主要介绍segues,static table view cells 和 Add Player screen 以及 a game picker screen。

Introducing Segues

开启 Main.storyboard拖拉一个Bar Button Item到Players窗口导航栏的右侧。在Attributes inspector中改变Identifier为Add,就会出现一个+号button。

当用户点击时会弹出一个模态窗口来输入新的player的详细信息。

拖拉一个新的navigation controller然后ctrl+drag来把之前的加号和这个view controller来连接。选择modal。

这个连接就是所知的segue(seg-way)表示的是从一个屏幕到另一个屏幕的传送。通过食用segue你不需要再为view间的显示来写代码了。

运行代码,点击加号,一个新的页面就出现了。

新创建一个PlayerDetailsViewController并且把之前modal中的table view controller的class设置为PlayerDetailsViewController。双击navigation bar把名称修改为Add Player.添加cacel和done bar item。