摘要: iOS arc和非arc 适用 宏1:使用宏+ (void)showAlertWithMessage:(NSString *)messages{ dispatch_async(dispatch_get_main_queue(), ^{ UIAlertView *alert = [[UIAlertView alloc]initWithTitle:@"版本更新提示" message:messages delegate:nil cancelButtonTitle:@"确定" otherButtonTitles:nil, nil]; [alert show]; 阅读全文
posted @ 2014-01-20 11:31 cocoajin 阅读(592) 评论(0) 推荐(0)