我不知道如何描述問題,而不是問題的標題:我有一個按鈕,其標題在點擊時出現,但不處於正常狀態。我環顧四周無濟於事。UIButton標題不會出現,除非點擊
如果您需要查看特定的代碼或需要其他詳細信息(我相信您會知道),請讓我知道。
編輯:該按鈕是在筆尖中創建的,但這裏是設置標題和處理按鈕的子視圖的代碼。
[chapterButton setTitle:[NSString stringWithFormat:@"%@: %d",newBookName,newChapter] forState:UIControlStateNormal];
UIImageView *triunghiView = (UIImageView *) [chapterButton viewWithTag:kTagTriangleView];
if(!triunghiView)
{
triunghiView = [[[UIImageView alloc] initWithImage:[UIImage imageNamed:@"triunghi.png"]] autorelease];
[triunghiView setContentMode:UIViewContentModeCenter];
[triunghiView setTag:kTagTriangleView];
[triunghiView sizeToFit];
[chapterButton addSubview:triunghiView];
}
[triunghiView setCenter:CGPointMake(chapterButton.titleLabel.frame.origin.x + chapterButton.titleLabel.frame.size.width + triunghiView.frame.size.width + 5, chapterButton.frame.size.height/2)];
如果沒有人會問,你會不會顯示代碼?它是一個顯而易見的事情,你必須展示代碼。 – Sarah
你能告訴我們那裏的代碼初始化了嗎?或者這個按鈕是在.nib文件中創建的? –
莎拉我不確定你希望看到哪部分代碼。所以最好先問。 :) –