標籤:des style blog io os 使用 for sp div
1、前言iOS8新增了UIAlertController來代替UIAlertView、UIActionSheet的使用。本文在不使用UIAlertController的情況下,用最簡單的方法讓UIAlertView、UIActionSheet相容iOS8.
2、UIAlertViewiOS8下,如果UIAlertView初始化的時候title為nil的話,iOS8下面彈框中message會變成粗體,並且過於靠近頂部,為了儲存跟iOS8之前的版本一致,只需要在初始化的時候將title置為@""就可以了。代碼如下:
//title置為@""相容iOS8 UIAlertView *delAlert = [[[UIAlertView alloc] initWithTitle:@"" message:@"刪除連絡人?" delegate:self cancelButtonTitle:@"取消" otherButtonTitles:@"確認", nil] autorelease]; [delAlert show];
3、UIActionSheetiOS8下,如果UIActionSheet初始化的時候title為@""的話,iOS8下面ActionSheet表單上方會多出一行空白欄,為了儲存跟iOS8之前的版本一致,只需要在初始化的時候將title置為nil就可以了。代碼如下:
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