博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Displaying Alerts with UIAlertView
阅读量:6138 次
发布时间:2019-06-21

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

UIAlertView *alertView = [[UIAlertView alloc]                            initWithTitle:@"Alert"                            message:@"You've been delivered an alert"                            delegate:nil                            cancelButtonTitle:@"Cancel"                            otherButtonTitles:@"Ok", nil];[alertView show];

 self.view.backgroundColor = [UIColor whiteColor];

NSString *message = @"Are you sure you want to open this link in Safari?";UIAlertView *alertView = [[UIAlertView alloc]                            initWithTitle:@"Open Link"                            message:message                            delegate:self                            cancelButtonTitle:[self noButtonTitle]                            otherButtonTitles:[self yesButtonTitle], nil];[alertView show];

 more samples

// one button alertUIAlertView *alert =    [[UIAlertView alloc]     initWithTitle: @"Hello"    message: @"Hello Master HaKu!"    delegate: self    cancelButtonTitle: @"OK"    OtherButtonTitles: nil];[alert show];[alert release];                            // two buttons alertUIAlertView *alert =    [[UIAlertView alloc]     initWithTitle: @"Hello"    message: @"Hello Master HaKu!"    delegate: self    cancelButtonTitle: @"YES"    OtherButtonTitles: @"NO", nil];[alert show];[alert release];                            // more buttons alertUIAlertView *alert =    [[UIAlertView alloc]     initWithTitle: @"Hello"    message: @"Hello Master HaKu!"    delegate: self    cancelButtonTitle: @"OK"    OtherButtonTitles: @"Option1", @"Option2", nil];[alert show];[alert release];                            @interface AlertTestViewController : UIViewController
@end// alert click implmentation- (void) alertView: (UIAlertView *)alertViewclickedButtonAtIndex: (NSInteger)buttonIndex{ NSLog(@"%d", buttonIndex);}

 

转载地址:http://vgkya.baihongyu.com/

你可能感兴趣的文章
注解(Annotation)自定义注解入门
查看>>
强制链接静态库所有符号(包括未被使用的)
查看>>
Asp.net获取系统信息
查看>>
【mysql】利用全文索引实现中文的快速查找
查看>>
Defining as a "long" or "int" type throws an error on startup
查看>>
在多台服务器上简单实现Redis的数据主从复制
查看>>
Html5 冒泡排序演示
查看>>
js 学习路线
查看>>
前端编辑工具有感
查看>>
CentOS6启动流程
查看>>
SpringBoot项目修改html后不即时编译
查看>>
mysql数据库的水平分表与垂直分表实例讲解
查看>>
OC 单例实现
查看>>
计算日期相隔天数/根据天数差计算结束日期
查看>>
iOS中RAC的使用
查看>>
MongonDB入门
查看>>
leetcode-506-Relative Ranks
查看>>
高并发编程必备基础(上)
查看>>
客户端HTTP缓存
查看>>
mysql server安装及配置
查看>>