【代码笔记】iOS-UIAlertView3秒后消失_移动开发_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > 移动开发 > 【代码笔记】iOS-UIAlertView3秒后消失

【代码笔记】iOS-UIAlertView3秒后消失

 2017/12/8 10:14:55  陈沐夕  程序员俱乐部  我要评论(0)
  • 摘要:一,效果图。二,代码。-(void)viewDidLoad{[superviewDidLoad];//Doanyadditionalsetupafterloadingtheview,typicallyfromanib.UIAlertView*alert=[[UIAlertViewalloc]initWithTitle:nilmessage:@"此信息3秒后消失"delegate:nilcancelButtonTitle:nilotherButtonTitles:nil,nil]
  • 标签:笔记 view iOS 代码

一,效果图。

二,代码。

class="cnblogs_code_copy" style="font-size: 18px">复制代码
- (void)viewDidLoad {
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.
    
    UIAlertView* alert = [[UIAlertView alloc]initWithTitle:nil message:@"此信息3秒后消失" delegate:nil cancelButtonTitle:nil otherButtonTitles:nil, nil];
    [alert show];

    [self performSelector:@selector(dismissAlert:) withObject:alert afterDelay:3.0];
}
- (void)dismissAlert:(UIAlertView*)alert {
    if ( alert.visible ) {
        [alert dismissWithClickedButtonIndex:alert.cancelButtonIndex animated:YES];
    }
}
上一篇: iPhone X碎了真心疼 选择碎屏险还是AppleCare+ 下一篇: 没有下一篇了!
发表评论
用户名: 匿名