-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
static NSString *cellid = @"cellid";
//UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellid];改为下面的样式
UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
if (!cell) {
cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellid];
}
/****xxx操作*****/
return cell;
}
header上拉悬浮 和footer下拉悬浮
UITableView tableView = [[UITableView alloc]initWithFrame:CGRectMake(0, 0, self.view.frame.size.width, self.view.frame.size.height) style:UITableViewStylePlain];
只要将style设置为UITableViewStylePlain就好
网友评论