如何屏蔽uialertcontroller

 我来答
清塵雅琴智爻
2016-12-02 · TA获得超过405个赞
知道小有建树答主
回答量:941
采纳率:66%
帮助的人:173万
展开全部
*message = @"I need your attention NOW!";
NSString *okButtonTitle = @"OK";
NSString *neverButtonTitle = @"Never";
NSString *laterButtonTitle = @"Maybe Later";

// 初始化
UIAlertController *alertDialog = [UIAlertController alertControllerWithTitle:title message:message preferredStyle:UIAlertControllerStyleAlert];

// 分别3个创建操作
UIAlertAction *laterAction = [UIAlertAction actionWithTitle:laterButtonTitle style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {
// 普通按键
self.userOutput.text = @"Clicked 'Maybe Later'";
}];
UIAlertAction *neverAction = [UIAlertAction actionWithTitle:neverButtonTitle style:UIAlertActionStyleDestructive handler:^(UIAlertAction *action) {
// 红色按键
self.userOutput.text = @"Clicked 'Never'";
}];
UIAlertAction *okAction = [UIAlertAction actionWithTitle:okButtonTitle style:UIAlertActionStyleCancel handler:^(UIAlertAction *action) {
// 取消按键
self.userOutput.text = @"Clicked 'OK'";
}];

// 添加操作(顺序就是呈现的上下顺序)
[alertDialog addAction:laterAction];
[alertDialog addAction:neverAction];
[alertDialog addAction:okAction];

// 呈现警告视图
[self presentViewController:alertDialog animated:YES completion:nil];
}
3个按键分别代表了3种不同类型的按键,分别是默认按键(普通)、销毁按键(红色)和取消按键(粗体)。从代码看其实就是在上一个的基础上加了3个 UIAlertAction 而已,然后分别设置不同的 style,效果如下:

3. 带输入框的提醒视图
如何添加输入框呢?新的 iOS 8 提供了相应的接口,使增加输入框就像增加按键方法一样简单。这里还是在第1个方法的基础上改动。

[objc] view plain copy
- (IBAction)doAlertInput:(id)sender {
// 准备初始化配置参数
NSString *title = @"Email Address";
NSString *message = @"Please enter your your email address:";
NSString *okButtonTitle = @"OK";

// 初始化
UIAlertController *alertDialog = [UIAlertController alertControllerWithTitle:title message:message preferredStyle:UIAlertControllerStyleAlert];

// 创建文本框
[alertDialog addTextFieldWithConfigurationHandler:^(UITextField *textField){
textField.placeholder = @"Your Email";
textField.secureTextEntry = NO;
}];

// 创建操作
UIAlertAction *okAction = [UIAlertAction actionWithTitle:okButtonTitle style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {
// 读取文本框的值显示出来
UITextField *userEmail = alertDialog.textFields.firstObject;
self.userOutput.text = userEmail.text;
}];

// 添加操作(顺序就是呈现的上下顺序)
[alertDialog addAction:okAction];

// 呈现警告视图
[self presentViewController:alertDialog animated:YES completion:nil];
}
在创建操作前先创建文本框,以便后面的按键可以操作文本框内容。创建文本框也只是用了一个简单的方法而已,想创建更多文本框就再使用多次这个方法即可,程序效果如下:

4. 提醒图表
与第2个和第3个方法相比,创建提醒图表简直易如反掌。因为和第1个方法相比,只需要改动一个参数就可以,即把创建UIAlertController实例的参数 UIAlertControllerStyleAlert 改为 UIAlertControllerStyleActionSheet ,别的都不用变。

[objc] view plain copy
- (IBAction)doActionSheet:(id)sender {
// 准备初始化配置参数
NSString *title = @"Alert Button Selected";
NSString *message = @"I need your attention NOW!";
NSString *okButtonTitle = @"OK";
NSString *neverButtonTitle = @"Never";
NSString *laterButtonTitle = @"Maybe Later";

// 初始化
UIAlertController *alertDialog = [UIAlertController alertControllerWithTitle:title message:message preferredStyle:UIAlertControllerStyleActionSheet];

// 分别3个创建操作
UIAlertAction *laterAction = [UIAlertAction actionWithTitle:laterButtonTitle style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {
// 普通按键
self.userOutput.text = @"Clicked 'Maybe Later'";
}];
UIAlertAction *neverAction = [UIAlertAction actionWithTitle:neverButtonTitle style:UIAlertActionStyleDestructive handler:^(UIAlertAction *action) {
// 红色按键
self.userOutput.text = @"Clicked 'Never'";
}];
UIAlertAction *okAction = [UIAlertAction actionWithTitle:okButtonTitle style:UIAlertActionStyleCancel handler:^(UIAlertAction *action) {
// 取消按键
self.userOutput.text = @"Clicked 'OK'";
}];

// 添加操作(顺序就是呈现的上下顺序)
[alertDialog addAction:laterAction];
[alertDialog addAction:neverAction];
[alertDialog addAction:okAction];

// 呈现警告视图
[self presentViewController:alertDialog animated:YES completion:nil];
}
这个就很简单了,跟第2个方法很像,效果如图:

5. 播放系统声音、提醒声音和振动设备
在 iOS 8 中,调用声音的方法发生了小变化,用曾经的方式无法获取系统声音文件的 soundID 。因此,这里直接调用 soundID 值来调用对应的声音,注意振动仍然正常调用kSystemSoundID_Vibrate常量即可:

[objc] view plain copy
- (IBAction)doSound:(id)sender {
// 播放系统声音
AudioServicesPlaySystemSound(1005);
}

- (IBAction)doAlertSound:(id)sender {
// 播放提醒声音
AudioServicesPlayAlertSound(1006);
}

- (IBAction)doVibration:(id)sender {
// 执行震动
AudioServicesPlaySystemSound(kSystemSoundID_Vibrate);
}
这样在 iOS 8 中就可以对用户发出提示了。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
威孚半导体技术
2024-08-19 广告
威孚(苏州)半导体技术有限公司是一家专注生产、研发、销售晶圆传输设备整机模块(EFEM/SORTER)及核心零部件的高科技半导体公司。公司核心团队均拥有多年半导体行业从业经验,其中技术团队成员博士、硕士学历占比80%以上,依托丰富的软件底层... 点击进入详情页
本回答由威孚半导体技术提供
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式