我怎樣才能在UITableViewCell上有一個標籤,但在它的右側還有一個箭頭?披露三角沒有出現在我的UITableViewCell上
這是我的嘗試:
} else if(indexPath.row == 1) {
UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(50,0,200,21)];
label.text = @"Select to change code";
label.tag = 1;
label.textColor = [UIColor grayColor];
cell.accessoryView = label;
cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
}
但它不工作。我看到標籤,但沒有看到電池右側的箭頭。
我想告訴你,你的問題的標題可能是不正確的...... – DreamOfMirrors 2011-05-27 11:56:40
@DreamOfMirrors - 不再事實並非如此。 – Abizern 2011-05-27 11:57:33