标签:des style blog io os 使用 for sp div
//title置为@""兼容iOS8 UIAlertView *delAlert = [[[UIAlertView alloc] initWithTitle:@"" message:@"删除联系人?" delegate:self cancelButtonTitle:@"取消" otherButtonTitles:@"确认", nil] autorelease]; [delAlert show];
UIActionSheet *actionSheet = [[[UIActionSheet alloc] initWithTitle:nil delegate:self cancelButtonTitle:NSLocalizedString(@"Cancel", nil) destructiveButtonTitle:[NSString stringWithFormat:NSLocalizedString(@"call", nil),self.phoneNumber] otherButtonTitles:NSLocalizedString(@"add to contact", nil),nil] autorelease]; actionSheet.tag = 1; [actionSheet showInView:self.view];
UIAlertView、UIActionSheet兼容iOS8
标签:des style blog io os 使用 for sp div
原文地址:http://blog.csdn.net/nextstudio/article/details/39959895