*label
=
[[uilabel
alloc]init]
设置字体粗细,需要设置
label.font
=
[uifont
fontwithname:@"helvetica"
size:15.f]
@"helvetica"是字体的样式,也就是字体的风格,相当于宋体、楷体等。
常用的字体有arial,helvetica等,要加粗就在其后加"-bold",如,@"helvetica-bold"。
size:15.f,这是设定字体的大小,在ios中,size:15.f,其中的15表示15个点(不是像素。如果是retina屏,每个点表示2*2个像素)。
首先,button有个方法intrinsicContentSize,返回值是CGSzie类型,这个就是你想要的大小。取出其宽,就OK了。其次,好像不设置button的宽,它的宽就是它的title的宽。你可以通过设置其原点,来设置其位置。
UIButton *SaveBtn = [UIButton buttonWithType:UIButtonTypeCustom]SaveBtn.titleLabel.adjustsFontSizeToFitWidth = YES
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)