tableView
文章平均质量分 61
三生河的水
这个作者很懒,什么都没留下…
展开
-
UITableViewCell中的cell addSubView和cell.contentView addSubview
我们定制TableViewCell的时候,往往根据个性需求不同,会在cell上加不同的内容。在cell上添加子视图的方式有两种。例如我在cell上加一个Label:UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:thirdIdentifier]; cell = [[UITableViewC原创 2015-03-26 15:25:34 · 1682 阅读 · 0 评论 -
TableView不响应TouchBegan方法
近期项目需求中,需要在tableView的单元格中输入内容,并点击tableView的任意部分可以收回键盘。一开始就想到了使用- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{ [bookingTableView endEditing:YES];} 但是无论怎么点击都不会走这个方法。后来查找资料发现,原创 2015-03-20 09:32:25 · 4165 阅读 · 0 评论 -
tableView去掉多余的空行分割线
如何去掉tableView多余的空白行分割线?我们经常会遇到下面的问题,tableView表视图上面的内容不是很多,但是 tableView 却帮忙把 整个屏幕都用 空白行分割线占满了:如下图:代码如下:[cpp] view plaincopyprint?// // TableViewControl转载 2015-03-22 13:49:33 · 685 阅读 · 0 评论 -
ios8中tableView分割线距左边有距离的解决方法
ios8系统下得tableView默认分割线距离左边有一段空白距离,以下代码可以解决这个问题首先在viewDidLoad中加以下代码 if ([_tabelview respondsToSelector:@selector(setSeparatorInset:)]) { [_tabelview setSeparatorInset:UIEdgeInsets原创 2015-04-16 16:09:51 · 1288 阅读 · 0 评论