- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
场景:使用自定义单元 UITableViewCell XIB(没有任何 Storyboard )。
另外:在 NIB 中设置访问器类型。 - 我在NIB和通过代码都试过了。
尝试设置单元访问器类型:
cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
@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;
最佳答案
你可以试试这个:
在 viewDidLoad 中:
[self.tableView registerClass:[MyStoreTableViewCell class] forCellReuseIdentifier:@"Cell"];
static NSString *CellIdentifier = @"Cell";
UserTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];
关于ios - UITableViewCellAccessoryDisclosureIndicator 未显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22387498/
场景:使用自定义单元 UITableViewCell XIB(没有任何 Storyboard )。 另外:在 NIB 中设置访问器类型。 - 我在NIB和通过代码都试过了。 尝试设置单元访问器类型:
我想在我的应用程序的不同部分使用普通人字形。有谁知道图像的名称,所以我可以调用 [UIImage imageNamed:@"AccessoryDisclosureIndicator.png"] ? 最
我正在为 iOS 应用制作一个带有可展开/可折叠单元格的 UITableView。我在这些单元格上放置了一个 UITableViewCellAccessoryDisclosureIndicator,但
下图中的“Office”这个标签叫什么? 如何以编程方式设置它? 最佳答案 这似乎是具有 UITableViewCellStyleValue1 样式的表格单元格的 detailTextView。 您可
我正在尝试制作一个自定义的 UITableViewCellAccessoryDisclosureIndicator,它比普通指示器大一点,并且颜色不同。我想知道是否有人可以告诉我如何访问指标和高亮指标
一个简单的问题,我想将 UITableViewCellAccessoryDisclosureIndicator(tableView 右侧的箭头)的颜色从默认的灰色更改为白色。 cell.accesso
我使用自动布局UITableViewCell来实现iOS 8中引入的动态单元格高度。我设置了单元格并将 accessoryType 设置为 UITableViewCellAccessoryDisclo
我在一个 UIViewController(不是 UITableViewController)的 TableView 中有两个表。现在我只想让其中一个单元格添加 UITableViewCellAcce
我创建了一个方法 - (void)tableView:(UITableView *)tableView accessoryButtonTappedForRowWithIndexPath:(NSInde
我是一名优秀的程序员,十分优秀!