有些時(shí)候我們想讓設(shè)置UIButton的title居左對(duì)齊
btn.textLabel.textAlignment = UITextAlignmentLeft
是沒(méi)有作用的,我們需要設(shè)置
btn.contentHorizontalAlignment = UIControlContentHorizonAlignmentLeft;
但是問(wèn)題又出來(lái)棱烂,此時(shí)文字會(huì)緊貼到做邊框,我們可以設(shè)置
btn.contentEdgeInsets = UIEdgeInsetsMake(0,10, 0, 0);
使文字距離做邊框保持10個(gè)像素的距離衬鱼。
=======================================================
設(shè)置UIButton上字體的顏色設(shè)置UIButton上字體的顏色业筏,不是用:
[btn.titleLabel setTextColor:[UIColorblackColor]];
btn.titleLabel.textColor=[UIColor redColor];
而是用:
[btn setTitleColor:[UIColor blackColor]forState:UIControlStateNormal];
另外,設(shè)置按鈕的圖片時(shí)盡量使用setBoundgroupImage鸟赫,不要使用setImage
---------------------
作者:網(wǎng)上的蟲
來(lái)源:CSDN
原文:https://blog.csdn.net/chowbindeblog/article/details/51626411
版權(quán)聲明:本文為博主原創(chuàng)文章蒜胖,轉(zhuǎn)載請(qǐng)附上博文鏈接!