博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
UITableView常见问题
阅读量:6298 次
发布时间:2019-06-22

本文共 1703 字,大约阅读时间需要 5 分钟。

  hot3.png

 1. UITableViewController中,默认的tableView是无法修改其Frame的。

    若要修改需要自己创建一个UITableView的对象。加入到self.view中

 2. IOS6中 UITableViewStyleGrouped类型无法设置背景颜色,需要修改BackgroundView属性

- (void)viewDidLoad{     ITableView *tableV = [[UITableView alloc]initWithFrame:CGRectMake(0, 0, 320, 460) style:UITableViewStyleGrouped];    tableV.backgroundView =nil;  //这里!    tableV.backgroundColor = [UIColor clearColor];    tableV.dataSource =self;    tableV.delegate =self;  [self.view addSubview:tableV];}

 3.UITableViewStyleGrouped类型的Cell会有边线,非常乱,需要修改Cell的BackgroundView

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{    static NSString * cellIndef = @"cellIndef";        UITableViewCell * cell = [tableView dequeueReusableCellWithIdentifier:cellIndef];        if (!cell) {        cell = [[[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellIndef]autorelease];        cell.selectionStyle = UITableViewCellSelectionStyleNone;        [cell setBackgroundView:nil]; //这里    }    return cell;}

 4. 不是直接使用UITableViewController时,比如创建了一个UITableView对象,Cell的选择效果是不会消失的,需要在选择方法中做一些处理

   

-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath  {   [tableView deselectRowAtIndexPath:[tableView   indexPathForSelectedRow] animated:YES];   //这里}

 5. 在table内容为空时显示空白的视图,取代默认的。

- (void)viewDidLoad{  ..  tableView.separatorStyle = UITableViewCellSeparatorStyleNone;  ..}-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{    if ([array count]>0)    {    tableView.separatorStyle=UITableViewCellSeparatorStyleSingleLine;    }    return [array count];}

转载于:https://my.oschina.net/lvlove/blog/103419

你可能感兴趣的文章
服务器运行
查看>>
1. Action 实现 ModelDriven 接口后的运行流程
查看>>
[Git]常用的Git命令行
查看>>
JAVA作业(5)
查看>>
单调队列
查看>>
实验报告四 恶意代码技术
查看>>
linux 编译C语言代码后产生OBJ文件的方法
查看>>
区块链技术资料汇总
查看>>
算法复习之坐标离散化
查看>>
网络通信
查看>>
数据包重放
查看>>
==和===的区别
查看>>
使用JQuery Autocomplete插件(一)
查看>>
Weblogic Admin Console
查看>>
JS框架设计之命名空间设计一种子模块
查看>>
javascript 事件对象
查看>>
分分钟搞定 JSP 技术
查看>>
python多进程模板
查看>>
【转载】大连商品交易所-新套利撮合算法FAQ
查看>>
ubuntu笔记 - 安装和配置Sublime Text
查看>>