IOS 提示框UIAlertView,UIActionSheet
一:UIAlertView警告框 IOS 2 - IOS 9
UIAlertView*AlertView=[[UIAlertView alloc]initWithTitle:@"请给我们一个评价" message:@"我们很尽力的去做一个应用,请给我们一个评价" delegate:self cancelButtonTitle:@"取消" otherButtonTitles:nil];
[AlertView show];//展示出来
-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
触摸屏幕调用这个函数
}
-(void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex
{
选择按键后调用函数。
NSLog(@"我们选择了那一个按键%d",buttonIndex);
}
-(void)alertView:(UIAlertView *)alertView didDismissWithButtonIndex:(NSInteger)buttonIndex
{
警告消失后调用函数。
NSLog(@"已经消失,按键是哪一个");
}
-(void)alertView:(UIAlertView *)alertView willDismissWithButtonIndex:(NSInteger)buttonIndex
{
NSLog(@"即将消失,按键是那一个");
}
-(void)alertViewCancel:(UIAlertView *)alertView
{
点击取消键调用函数
NSLog(@"点取消按键");
}
二:UIActionSheet从下面弹出来的提示框,IOS 2 - IOS 8.3
遵从 UIActionSheetDelegate协议
-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
UIActionSheet*ActionSheet=[[UIActionSheet alloc]initWithTitle:@"资源名" delegate:self cancelButtonTitle:@"取消" destructiveButtonTitle:@"你猜" otherButtonTitles:@"你在猜", nil];
[ActionSheet showInView:self.view];
}
-(void)actionSheet:(UIActionSheet *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex
{
NSLog(@"点击了哪个");
}
三:UIAlertController,继承自UIViewController,用以替代UIAlertView和UIActionSheet,IOS 8开始。
实例化方法为+ (instancetype)alertControllerWithTitle:(nullableNSString*)title message:(nullableNSString*)message preferredStyle:(UIAlertControllerStyle)preferredStyle;
typedefNS_ENUM(NSInteger, UIAlertControllerStyle) {
UIAlertControllerStyleActionSheet =0,
UIAlertControllerStyleAlert
}NS_ENUM_AVAILABLE_IOS(8_0);对应alert和action两种样式。
通过- (void)addAction:(UIAlertAction*)action;来添加按钮项。
在项目中,可以创建一个alert管理类,来管理整个项目中的弹出框。