UIActionSheet button text not displaying properly in ios 8
问题 I am trying to create little custome UI of UIActionSheet.I want to display the large text in button of UIActionSheet. This code is working fine below ios 8, But in ios 8 - (void)willPresentActionSheet:(UIActionSheet *)actionSheet { for (UIView *subview in actionSheet.subviews) { if ([subview isKindOfClass:[UIButton class]]) { UIButton *button = (UIButton *)subview; UIFont *textFont=[UIFont fontWithName:@"Palatino-Roman" size:12.0]; button.titleLabel.font=textFont; button.titleLabel