作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 tableView,我需要在其中显示 textlabel
和 detailtextlabel
。
但是 detailtextlabel
没有显示。
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
static NSString *CellIdentifier=@"Cell";
UITableViewCell* cell=[tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if(cell == nil){
cell = [[[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier]autorelease];
}
NSMutableDictionary *d2 =[[NSMutableDictionary alloc]initWithDictionary:[autocompleteUrls objectAtIndex:indexPath.row]];
cell.textLabel.text = [NSString stringWithFormat:@"%@",[d2 valueForKey:@"FLName"]];
cell.detailTextLabel.text=@"Id";
cell.textLabel.font=[UIFont boldSystemFontOfSize:12];
cell.textLabel.numberOfLines=0;
return cell;
}
但是 detailtextlabel
没有显示,为什么?
最佳答案
你使用 UITableViewCellStyleDefault 但你必须使用 UITableViewCellStyleSubtitle
cell = [[[UITableViewCell alloc]initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier]autorelease];
关于iphone - cell.detaillabel 的文本未显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15140064/
我有一个 tableView,我需要在其中显示 textlabel 和 detailtextlabel。 但是 detailtextlabel 没有显示。 -(UITableViewCell *)ta
我正在使用 CosmicMind - Material Framework 来创建卡片。 titleLabel 和 DetailLabel 不换行。 我的问题是:我需要做什么才能完成这样的任务,它是否
我试图让我的 PickerView 值显示在我的 UITableView 详细信息标签上。所以我在我的 FormCell.swift 中设置 func pickerView(_ pickerView:
我是一名优秀的程序员,十分优秀!