当前位置: 首页 > 工具软件 > iWatch > 使用案例 >

iWatch 页面导航

孔睿
2023-12-01

WatchKit apps支持两种导航方式:

  • Page based。效果就是通过用户的左右滑动来切换页面,一般这些页面的内容不是上下级关系而是平行关系或者说是页面间的关系不大,并且页面下方会有。。。。来显示选择的哪个页面
  • Hierarchical。类似iOS里的导航控制器
虽然不可以将page based 和 hierarchical导航方式混用,但是在使用hierarchical方式时modal一个新页面,然后在这个新页面中使用page based方法


实现一个page based页面:在storyboard中按住ctrl键从一个页面拖到另一个页面然后选择next page


实现一个hierarchical页面:代码用pushControllerWithName:context:方法 或者在storyboard中按住ctrl从一个button,group,table row中拖到push页面选择push


modal新页面:代码用presentControllerWithName:context:方法跳转到一个新页面 或者用presentControllerWithName:contexts:方法跳转到page-based页面 或者在storyboard中按住ctrl从一个button,group,table row中拖到modal页面选择modal

 类似资料: