码迷,mamicode.com
首页 > 移动开发 > 详细

iOS 警告窗口

时间:2016-06-03 15:39:32      阅读:313      评论:0      收藏:0      [点我收藏+]

标签:

- (IBAction)buttonPressed:(id)sender {
    
    NSDate *date=self.datePicker.date;
    NSString *message=[[NSString alloc]initWithFormat:@"The date and time you select is %@",date];
    UIAlertController *alert=[UIAlertController alertControllerWithTitle:@"Date and Time selected" message:message preferredStyle:UIAlertControllerStyleAlert];
    UIAlertAction *action=[UIAlertAction actionWithTitle:@"That‘s so true!" style:UIAlertActionStyleDefault handler:nil];
    
    [alert addAction:action];
    [self presentViewController:alert animated:YES completion:nil];
}

 

活活累死, 比安卓负责两万倍, 安卓烤土司, 多好...

iOS 警告窗口

标签:

原文地址:http://www.cnblogs.com/Montauk/p/5556480.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!