博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
iOS开发之调用系统设置
阅读量:6473 次
发布时间:2019-06-23

本文共 2191 字,大约阅读时间需要 7 分钟。

调整屏幕亮度

  [[UIScreen mainScreen] setBrightness:0.5];

 

调用系统设置

 [[UIApplicationsharedApplication] openURL:[NSURL URLWithString:@"prefs:root=General"]];

 

[[UIApplicationsharedApplication] openURL:[NSURL URLWithString:@"prefs:root=General&path=Restrictions"]];

一些其他可用的参数:

 

  • prefs:root=General&path=About  //关于
  • prefs:root=General&path=ACCESSIBILITY//重力感应 
  • prefs:root=AIRPLANE_MODE//飞行模式
  • prefs:root=General&path=AUTOLOCK//自动锁定
  • prefs:root=General&path=USAGE/CELLULAR_USAGE//用量
  • prefs:root=Brightness//亮度调节
  • prefs:root=General&path=Bluetooth//蓝牙
  • prefs:root=General&path=DATE_AND_TIME//时间和日期
  • prefs:root=FACETIME//
  • prefs:root=General//通用
  • prefs:root=General&path=Keyboard//键盘
  • prefs:root=CASTLE//
  • prefs:root=CASTLE&path=STORAGE_AND_BACKUP//
  • prefs:root=General&path=INTERNATIONAL//
  • prefs:root=LOCATION_SERVICES//
  • prefs:root=ACCOUNT_SETTINGS//
  • prefs:root=MUSIC//
  • prefs:root=MUSIC&path=EQ//
  • prefs:root=MUSIC&path=VolumeLimit//
  • prefs:root=General&path=Network//
  • prefs:root=NIKE_PLUS_IPOD//
  • prefs:root=NOTES//
  • prefs:root=NOTIFICATIONS_ID//
  • prefs:root=Phone//
  • prefs:root=Photos//
  • prefs:root=General&path=ManagedConfigurationList//
  • prefs:root=General&path=Reset//
  • prefs:root=Sounds&path=Ringtone//
  • prefs:root=Safari//
  • prefs:root=General&path=Assistant//
  • prefs:root=Sounds//
  • prefs:root=General&path=SOFTWARE_UPDATE_LINK//
  • prefs:root=STORE//
  • prefs:root=TWITTER//
  • prefs:root=General&path=USAGE//
  • prefs:root=VIDEO//
  • prefs:root=General&path=Network/VPN//
  • prefs:root=Wallpaper//
  • prefs:root=WIFI//
  • prefs:root=INTERNET_TETHERING//

 

UIAlertController 的使用

UIAlertController*alert=[UIAlertController alertControllerWithTitle:@"警告框" message:nil preferredStyle:UIAlertControllerStyleAlert];

    [alert addAction:[UIAlertAction actionWithTitle:@"确定" style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {

        NSLog(@"确定");

    }]];

    [alert addAction:[UIAlertAction actionWithTitle:@"警示性" style:UIAlertActionStyleDestructive handler:^(UIAlertAction *action) {

        NSLog(@"不确定");

    }]];

    [alert addAction:[UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleCancel handler:^(UIAlertAction *action) {

        NSLog(@"取消");

    }]];

    [self presentViewController:al animated:YES completion:nil];

 

转载于:https://www.cnblogs.com/fantasy940155655/p/5715792.html

你可能感兴趣的文章
,net运行框架
查看>>
Java 中 Emoji 的正则表达式
查看>>
Mixin Network第一届开发者大赛作品介绍- dodice, diceos和Fox.one luckycoin
查看>>
安卓Glide(4.7.1)使用笔记 01 - 引入项目
查看>>
中金易云:为出版社找到下一本《解忧杂货店》
查看>>
Flex布局
查看>>
Material Design之 AppbarLayout 开发实践总结
查看>>
Flutter之MaterialApp使用详解
查看>>
DataBinding最全使用说明
查看>>
原生Js交互之DSBridge
查看>>
Matlab编程之——卷积神经网络CNN代码解析
查看>>
白洋淀周末游
查看>>
三篇文章了解 TiDB 技术内幕 —— 说计算
查看>>
copy strong weak assign的区别
查看>>
OpenCV 入门
查看>>
css 3D transform变换
查看>>
ele表格合并行之后的selection选中
查看>>
正则表达式分解剖析(一文悟透正则表达式)
查看>>
解决UILable标点符号居中的问题
查看>>
HTML5新特性教程
查看>>