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];

posted on 2012-12-03 14:34  老Zhan  阅读(4843)  评论(0编辑  收藏  举报