1.首先说的是添加向右的箭头,这个很简单,只要在cellForRowAtIndexPath:方法中执行以下代码:
cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
这样就可以达到添加向右箭头的效果了,其实还有其他几个样式,也是可以在cell的右侧添加一些图案的,这个自己打一半看补全再试试就知道了。
2.添加完箭头以后,若还想在箭头前面添加文字,则需要在cellForRowAtIndexPath:执行以下代码:
cell.detailTextLabel.text = @"测试";
如果你执行之后可以看到箭头前有文字出现的话,还需要在cellForRowAtIndexPath:中把cell的类型设置为UITableViewCellStyleValue1
,cellForRowAtIndexPath:的整段代码如下:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"formCell"];
if (cell == nil) {
cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:@"formCell"];
cell.textLabel.text = @"monalisa";
}
cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
cell.detailTextLabel.text = @"mona";