目前我tableView
具有初級職稱和使用該兩行字幕:是否有可能有一個主標題,副標題和UITableViewStyleValue1風格的標題在一個UITableView
cell.textLabel.text = [shiftLength objectAtIndex:indexPath.row];
cell.detailTextLabel.numberOfLines = 2;
cell.detailTextLabel.text = allDetail;
cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
你怎麼上的文字電池右側代替配件類型?
我試圖將一個標籤在附件視圖,但沒有任何顯示
UILabel *yourLabel = [[UILabel alloc] initWithFrame:CGRectMake(10, 10, 300, 20)];
yourLabel.text = @"TEXT:";
[yourLabel setTextColor:[UIColor blackColor]];
[yourLabel setBackgroundColor:[UIColor clearColor]];
[yourLabel setFont:[UIFont fontWithName: @"Trebuchet MS" size: 14.0f]];
[cell.accessoryView addSubview:yourLabel];
檢查修訂後的問題 – inVINCEable
@inVINCEable不要將'yourLabel'添加爲'accessoryView'的子視圖,將其分配爲'accessoryView'。它沒有出現的原因是'accessoryView'在您嘗試將其添加爲子視圖時爲零。 – CrimsonChris