UILabel의 경우, "setTextAlignment:" 로 Text를 정렬한다.
UIButton에 setTitle:forControlState:를 통해서 Text를 Setting하면, UIButton의 titleLabel에 값이 설정된다.
그래서
[someButton.titleLabel setTextAlignment:UITextAlignmentLeft]; 했는데, 변함이 없다.
UIButton의 TitleAlignment는
@property(nonatomic) UIControlContentHorizontalAlignment contentHorizontalAlignment; // how to position content hozontally inside control. default is center
UIControlContentHorizontalAlignment를 통해서 해야한다.