随笔 - 400,  文章 - 0,  评论 - 7,  阅读 - 21万

 

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
import UIKit
 
class ViewController: UIViewController {
     
     
    override func touchesBegan(_ touches: Set<UITouch>, with event: UIEvent?) {
 
 
        print("点了 touchesBegan")
         
        let url = URL(string: UIApplication.openSettingsURLString)
         
        if let canOpenUrl = url,
            UIApplication.shared.canOpenURL(canOpenUrl){
             
            UIApplication.shared.open(canOpenUrl, options: [:], completionHandler:  nil)
        }
    }
 
    override func viewDidLoad() {
        super.viewDidLoad()
         
 
        //FIXME:因为苹果不让跳转root,下列都被废弃了。。 在xcode9 上都是直接设置权限,才能跳转对应设置界面,而且下列设置会被拒
        // Do any additional setup after loading the view, typically from a nib.
        //        About — prefs:root=General&path=About
        //        Accessibility — prefs:root=General&path=ACCESSIBILITY
        //        AirplaneModeOn— prefs:root=AIRPLANE_MODE
        //        Auto-Lock — prefs:root=General&path=AUTOLOCK
        //        Brightness — prefs:root=Brightness
        //        Bluetooth — prefs:root=General&path=Bluetooth
        //        Date& Time — prefs:root=General&path=DATE_AND_TIME
        //        FaceTime — prefs:root=FACETIME
        //        General— prefs:root=General
        //        Keyboard — prefs:root=General&path=Keyboard
        //        iCloud — prefs:root=CASTLE  iCloud
        //        Storage & Backup — prefs:root=CASTLE&path=STORAGE_AND_BACKUP
        //        International — prefs:root=General&path=INTERNATIONAL
        //          Location Services — prefs:root=LOCATION_SERVICES
        //        Wi-Fi — prefs:root=WIFISetting—prefs:root=INTERNET_TETHERING
        //        Wallpaper — prefs:root=Wallpaper
        //        VPN — prefs:root=General&path=Network/VPN
        //        Twitter — prefs:root=TWITTER  Usage — prefs:root=General&path=USAGE
        //        Store — prefs:root=STORE
        //        SoftwareUpdate— prefs:root=General&path=SOFTWARE_UPDATE_LINK
        //        Sounds — prefs:root=Sounds
        //        Siri — prefs:root=General&path=Assistant
        //        Safari — prefs:root=Safari
        //        Reset — prefs:root=General&path=Reset
        //        Profile — prefs:root=General&path=ManagedConfigurationList
        //        Phone — prefs:root=Phone  Photos — prefs:root=Photos
        //        Notification — prefs:root=NOTIFICATIONS_ID
        //        Notes — prefs:root=NOTES
        //        Nike + iPod — prefs:root=NIKE_PLUS_IPOD
        //        Network — prefs:root=General&path=Network
        //        Music VolumeLimit— prefs:root=MUSIC&path=VolumeLimit
        //         Music Equalizer — prefs:root=MUSIC&path=EQ
        //        Music — prefs:root=MUSIC
         
    }
 
 
}

  

posted on   懂事长qingzZ  阅读(342)  评论(0编辑  收藏  举报
编辑推荐:
· AI与.NET技术实操系列:基于图像分类模型对图像进行分类
· go语言实现终端里的倒计时
· 如何编写易于单元测试的代码
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
阅读排行:
· 分享一个免费、快速、无限量使用的满血 DeepSeek R1 模型,支持深度思考和联网搜索!
· 基于 Docker 搭建 FRP 内网穿透开源项目(很简单哒)
· ollama系列01:轻松3步本地部署deepseek,普通电脑可用
· 25岁的心里话
· 按钮权限的设计及实现

< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5
点击右上角即可分享
微信分享提示