You just need to include UIAlertViewDelegate
in your .h
file and override this method in your .m
file.
-(void)willPresentAlertView:(UIAlertView *)alertView{
UILabel *theTitle = [alertView valueForKey:@"_titleLabel"];
theTitle.font = [UIFont fontWithName:@"Copperplate" size:18];
[theTitle setTextColor:[UIColor whiteColor]];
UILabel *theBody = [alertView valueForKey:@"_bodyTextLabel"];
theBody.font = [UIFont fontWithName:@"Copperplate" size:15];
[theBody setTextColor:[UIColor whiteColor]];
}
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…