1. 程式人生 > >swift 跳轉網頁寫法

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")!)

                    }

                })