我有一个 iPad 应用程序,它已经在 iOS 7 上运行。我曾经使用以下代码减小操作表按钮中的文本大小:
- (void) willPresentActionSheet:(UIActionSheet *)actionSheet {
for (UIView *subview in actionSheet.subviews) {
if ([subview isKindOfClass:[UIButton class]]) {
UIButton *button = (UIButton *)subview;
button.titleLabel.font = [UIFont fontWithName:@"HelveticaNeue" size:17.0];
}
}
}
我正在寻找一种在 iOS 8 上使用UIAlertController
和执行相同操作的方法UIAlertAction
。尽管它有一个带有子视图的视图,UIAlertController
但它似乎没有任何子视图。UIButton
UILabel