-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
//!!!必须实现:UITableViewCellStyleValue1 这种样式
UITableViewCell *cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:@"cell"];
cell.textLabel.text =@"我在左侧";
cell.detailTextLabel.text=@"我在右侧";
cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
}
网友评论