UITableviewCell系统定义的几种方式
1,UITableViewCellStyleDefault
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{ static NSString *identifier = @"cell"; UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:identifier]; if (!cell) { cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:identifier]; } cell.imageView.image = [UIImage imageNamed:@"userIcon.png"]; cell.textLabel.text = @"王宝强"; return cell; }