首页 > 代码库 > ios8添加通知栏启动

ios8添加通知栏启动

ios8添加通知栏启动

by 伍雪颖



以打开vpn设置为例:

@IBAction func open(sender: AnyObject) {
        let context = self.extensionContext
        let url = NSURL.URLWithString("prefs:root=General&path=VPN")
        context?.openURL(url, completionHandler: { (Bool) -> Void in
        })
}



ios8添加通知栏启动