场景:使用自定义单元格UITableViewCell XIB(没有任何故事板)。
另外:在NIB中设置访问者类型。 - 我在NIB&通过代码。
尝试设置cell-accessor类型:
cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
结果:未显示附件类型。
为什么?
单元格只有两(2)个标签,有足够的空间可供AccessoryView使用。 这是单元格代码:
@interface MyStoreTableViewCell : UITableViewCell
@property (weak, nonatomic) IBOutlet UILabel *addressLabel;
@property (weak, nonatomic) IBOutlet UILabel *storeDistanceLabel;
@end
这是身体:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
MyStoreTableViewCell *cell = (MyStoreTableViewCell *)[tableView dequeueReusableCellWithIdentifier: CellIdentifier];
Address *address = _storeAddresses[indexPath.row];
[cell.contentView addSubview:self.storeAddressButtons[indexPath.row]];
cell.addressLabel.attributedText = [NSAttributedString staplesNormalAttributeStringOf:[address toString] havingFont:[UIFont staplesLightMediumFont]];
NSString *myString = [NSString stringWithFormat:@"%2.1f miles",[address.distance floatValue]];
cell.storeDistanceLabel.attributedText = [NSAttributedString staplesNormalAttributeStringOf:myString havingFont:[UIFont staplesLightMediumFont]];
// ...this doesn't have any effect:
cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
return cell;
}
答案 0 :(得分:0)
你可以试试这个:
在viewDidLoad中:
[self.tableView registerClass:[MyStoreTableViewCell class] forCellReuseIdentifier:@"Cell"];
在cellForRowAtIndexPath中:
static NSString *CellIdentifier = @"Cell";
UserTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];
答案 1 :(得分:0)
我认为,您缺少添加customcell nib文件。请找到以下可能对您有所帮助。
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"customCell";
DeficiencyTableViewCell *cell = (DeficiencyTableViewCell *)[tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
NSArray * topLevelObjects = [[NSBundle mainBundle] loadNibNamed:@"DeficiencyTableViewCell" owner:self options:nil];
for(id currentObject in topLevelObjects)
{
if([currentObject isKindOfClass:[UITableViewCell class]])
{
cell = (DeficiencyTableViewCell *)currentObject;
break;
}
}
}
cell.mFacilityLbl_.text = @"Fac";
cell.selectionStyle = UITableViewCellSelectionStyleNone;
cell.backgroundColor = [UIColor clearColor];
cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
return cell;
}