IOS开发中UIAlertView实现的自动关闭操作

来源:爱站网时间:2021-03-09编辑:网友分享
程序员在编写的时候要运用很多提示信息,而UIAlertView控件就能自然的操作,今天爱站技术频道小编与大家一起分享IOS开发中UIAlertView实现的自动关闭操作。

程序员在编写的时候要运用很多提示信息,而UIAlertView控件就能自然的操作,今天爱站技术频道小编与大家一起分享IOS开发中UIAlertView实现的自动关闭操作。

一,效果图。

二,代码。

RootViewController.h
#import 
@interface RootViewController : UIViewController

@end
RootViewController.m
- (void)viewDidLoad
{
 [super viewDidLoad];
 // Do any additional setup after loading the view.
 //alert
 UIAlertView *alert=[[UIAlertView alloc]initWithTitle:nil message:@"一个可以自动关闭的Alert窗口" delegate:self cancelButtonTitle:nil otherButtonTitles:nil, nil];
 [alert show];
 //显示框
 UIActivityIndicatorView *indicator = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhiteLarge];
 indicator.backgroundColor=[UIColor redColor];
 indicator.center = CGPointMake(alert.bounds.size.width/2, alert.bounds.size.height-40.0);
 [indicator startAnimating];
 [alert insertSubview:indicator atIndex:0];
 //定时器
 [NSTimer scheduledTimerWithTimeInterval:3.0f target:self selector:@selector(dismissAlert:) userInfo:[NSDictionary dictionaryWithObjectsAndKeys:alert, @"alert", @"testing ", @"key" ,nil] repeats:NO];
}
//alert 自动消失
-(void) dismissAlert:(NSTimer *)timer{
 UIAlertView *alert = [[timer userInfo] objectForKey:@"alert"];
 [alert dismissWithClickedButtonIndex:0 animated:YES];
}

以上就是爱站技术频道小编为大家带来的IOS开发中UIAlertView实现的自动关闭操作,程序员需要花费时间去研究哦。

上一篇:IOS中获取图片大小的操作

下一篇:IOS开发中文件操作的详细说明

您可能感兴趣的文章

相关阅读

热门软件源码

最新软件源码下载