码迷,mamicode.com
首页 > 其他好文 > 详细

AlertView点击确定后再执行后面的代码-runloop的妙用

时间:2014-09-15 15:29:59      阅读:203      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   for   div   sp   代码   log   on   


 AlertView的show方法执行后,后面的代码会继续运行,而不会等待用户按键结束再走,这样,如果把弹出的代码写在一个BOOL函数里,没等用户确认直接返回NO就惨了,解决方法:

- (BOOL)beforeBackButtonClickEvent {
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"提示" message:@"舍弃流程?" delegate:self cancelButtonTitle:@"" otherButtonTitles:@"", nil];
[alert show];
CFRunLoopRun();

return back;
}

- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex {
//
if (buttonIndex == 0) {
back = NO;
}
//
else {
back = YES;
}
CFRunLoopStop(CFRunLoopGetMain());
}

 

AlertView点击确定后再执行后面的代码-runloop的妙用

标签:style   blog   color   for   div   sp   代码   log   on   

原文地址:http://www.cnblogs.com/blackpaw/p/3972777.html

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