UIAlertView
ボタンのtitleLabel
プロパティにアクセスするにはどうすればよいですか? 私は次のコードを試しました:
for (UIView *view in action.subviews)
{
if([view isKindOfClass:[NSClassFromString(@"UIAlertButton") class]])
{
//Do something with title label font
}
}