我有一個與UIButton裏面的ViewController。 當我點擊時,按鈕上的文字消失。 我爲所有狀態添加所有setTitle,但它繼續消失。 有什麼想法?UIButton標題消失
這是我的代碼的一部分:
@interface AddCardViewController : UITableViewController <UITextFieldDelegate>{
UIButton *commit;
......
@implementation AddCardViewController
- (void)viewDidLoad{
self.commit = [UIButton buttonWithType: UIButtonTypeCustom];
[self setCommitProperties];
[self.view addSubview:commit];
.........}
- (void) setCommitProperties{
CGRect frameTable = self.tableView.frame;
CGRect frame = CGRectMake(frameTable.origin.x + 10, 140, frameTable.size.width - 20, 40);
commit.frame = frame;
[commit setBackgroundColor : [UIColor whiteColor]];
[commit setTitle: NSLocalizedString(@"AddCard",@"") forState: UIControlStateNormal];
[commit setTitle: NSLocalizedString(@"AddCard",@"") forState: UIControlStateSelected];
[commit setTitle: NSLocalizedString(@"AddCard",@"") forState: UIControlStateHighlighted];
[commit setTitle: NSLocalizedString(@"AddCard",@"") forState: UIControlStateApplication];
[commit setTitle: NSLocalizedString(@"AddCard",@"") forState: UIControlStateReserved];
[commit setTitle: NSLocalizedString(@"AddCard",@"") forState: UIControlStateDisabled];
[commit addTarget:self action:@selector(buttonPressed:) forControlEvents:UIControlEventTouchDown];
UIColor *color = [[[PersonalizationManager alloc] init] getColor: @"AddCardViewController" :@"Commit_Title"];
[commit.titleLabel setTextColor: color];
color = [[[PersonalizationManager alloc] init] getColor: @"AddCardViewController" :@"Commit_Border"];
[commit.layer setBorderColor:[color CGColor]];
[commit.layer setBorderWidth : 0.5f];
[commit.layer setCornerRadius : 10.0f];
}
是啊!那是解決方案。你是對的。 我沒有考慮顏色,我試過並測試了Title的所有屬性。 這些都是問的好東西。 非常感謝 – 2012-02-16 14:48:35
我是一個新的ios開發人員,我認爲api已更改cz沒有setTextColor方法可用。改用setTitleColor – sudip 2013-01-27 14:43:30