正确
//设置按钮上的自体的大小
btn.titleLabel.font = [UIFont systemFontOfSize: 14.0];
//想让UIButton的title对齐
btn.contentHorizontalAlignment = UIControlContentHorizonAlignmentLeft;
btn.contentEdgeInsets = UIEdgeInsetsMake(0,10, 0, 0);
//设置UIButton上字体的颜色
[btn setTitleColor:[UIColor blackColor]forState:UIControlStateNormal];
错误
//设置按钮上的自体的大小
[btn setFont: [UIFont systemFontSize: 14.0]]; //这种可以用来设置字体的大小,但是可能会在将来的SDK版本中去除改方法
//想让UIButton的title对齐
btn.textLabel.textAlignment = UITextAlignmentLeft
//设置UIButton上字体的颜色
[btn.titleLabel setTextColor:[UIColorblackColor]];
btn.titleLabel.textColor=[UIColor redColor];