APP开发之IOSSWIFT页面跳转方法全解析

2023-02-18    分类: App开发

网站制作中,页面跳转使用超链接,A标签,非常方便简单,但是在IOS APP开发中就没那么容易了,需要写比较多的代码,创新互联以下为你一一分享APP页面跳转方法全解。

APP页面跳转
一、 使用StoryBoard点击按钮直接跳转到新页面​按住Ctrl键,拖动连接线到目标页面,弹出窗口选择modal 则为新页面
如果要选择push,则原页面要实现Navigation导航二、 利用Segue代码跳转在起始页面按住Ctrl键拖动连接线到目标页面,弹出窗口选择动作类型,然后选中页面连线,属性框中命名Indetifier,然后中页面代码处需要跳转地方使用
self.performSegueWithIdentifier ("CatSegue", sender: nil)
三、 代码PUSHlet mainStoryboard = UIStoryboard(name: "Main", bundle: NSBundle.mainBundle())
let vc = mainStoryboard.instantiateViewControllerWithIdentifier("CategoryViewController") as! CategoryViewController
self.navigationController.pushViewController(vc,animated:true)
四、 代码Modallet mainStoryboard = UIStoryboard(name: "Main", bundle: NSBundle.mainBundle())
let vc = mainStoryboard.instantiateViewControllerWithIdentifier("CategoryViewController") as! CategoryViewController
self.presentViewController(vc,animated:true,completion:nil)

网页名称:APP开发之IOSSWIFT页面跳转方法全解析
文章出自:https://www.cdcxhl.com/news15/237765.html

网站建设、网络推广公司-创新互联,是专注品牌与效果的网站制作,网络营销seo公司;服务项目有App开发

广告

声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联

微信小程序开发