UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];
button.contentHorizontalAlignment = UIControlContentHorizontalAlignmentLeft;//文字左对齐(紧贴button的frame的左边缘
较为复杂的对其方式可以使用
UIEdgeInsets 可以设置CGFloat top, left, bottom, right 上、左、下、右的偏移量
UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];
button.contentHorizontalAlignment = UIControlContentHorizontalAlignmentLeft;//文字左对齐(紧贴button的frame的左边缘
较为复杂的对其方式可以使用
UIEdgeInsets 可以设置CGFloat top, left, bottom, right 上、左、下、右的偏移量