美文网首页
UITableview中 cell的重影,header上拉悬浮

UITableview中 cell的重影,header上拉悬浮

作者: 墨凌风起 | 来源:发表于2017-05-27 16:56 被阅读172次
-(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就好

相关文章

网友评论

      本文标题:UITableview中 cell的重影,header上拉悬浮

      本文链接:https://www.haomeiwen.com/subject/ocvqfxtx.html