iOS:Button.titleLabel.text


在代碼中對button上的字進行設置,我們可以通過:

m_addButton.titleLabel.font = [UIFont systemFontOfSize: 7];
m_addButton.titleLabel.textColor = [UIColor blackColor];         
m_addButton.titleLabel.textAlignment = UITextAlignmentRight;

但是改變上面的字的時候不能用  m_addButton.titleLabel.text = @"Add Stuff";

而是要通過   [m_addButton setTitle:@"Add Stuff" forState: UIControlStateNormal];


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM