UIButton算是最基本的一个控件了,不过有的时候用法挺多关于UIButton文字的位置,字体大小,字体的颜色
1.设置UIButton字体大小,尤其注意不要使用直接调用setFont:
[self.playButton.titleLabel setFont:[UIFont systemFontOfSize:14]];
2.UIButton默认背景是白色的,如果文字默认颜色是白色的,是看不到文字的,设置标题颜色:
[self.playButton setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];
3.设置颜色之后很有可能标题没法显示,检查一下是不是通过titleLabel设置的,应该是直接设置:
[self.playButton setTitle:@"FlyElephant" forState:UIControlStateNormal];
4.设置文字居中,最容易通过title设置NSTextAlignment,结果发现不尽人意,这个时候可以通过contentHorizontalAlignment设置:
self.playButton.contentHorizontalAlignment= UIControlContentHorizontalAlignmentLeft;
垂直方向的设置和水平方向差不多:
self.playButton.contentVerticalAlignment=UIControlContentVerticalAlignmentBottom;
5.设置居左之后可能发现太过于居左,可以通过setContentEdgeInsets设置:
[self.playButton setContentEdgeInsets:UIEdgeInsetsMake(0, 10, 0, 0)];
基本上这是最容易出错的地方,切记小心~