swift 跳转网页写法

var alert : UIAlertView = UIAlertView.init(title: "公安出入境网上办事平台", message: "目前您可以使用网页版进行出入境业务预约与查询,是否进入公安出入境办事平台?", delegate: nil, cancelButtonTitle: "取消", otherButtonTitles: "确定")

                

                alert.showAlertViewWithCompleteBlock({ (buttonIndex : NSInteger) in

                    if (buttonIndex == 1) {

                        

                        UIApplication.sharedApplication().openURL(NSURL.init(string: "http://219.136.255.192/ywbl/crjzjyysl/yysq/?type=sq&province=41")!)

                        

                        

                        

                    }

                })


你可能感兴趣的:(swift,跳转网页写法)