基础知识 UITableView
kongyu_2013
ios开发
展开
-
UITableView中的部分设置
UITableView 默认选中一个 cell首先定义一个变量并初始化123456BOOL isSelectRow;- (void)viewDidLoad{ [superviewDidLoad]; // Do any additional setup after loading the view.转载 2014-03-11 17:04:37 · 734 阅读 · 0 评论 -
uitableView 自带的刷新控件
uitableView 自带刷新控件,只需几行代码轻松搞定原创 2014-09-23 16:03:26 · 1395 阅读 · 0 评论 -
uitable ios7 cell 横线左移
uitableView cell 的横线,左移if([_tableView respondsToSelector:@selector(setSeparatorInset:)]) { [_tableViewsetSeparatorInset:UIEdgeInsetsZero];}转载 2014-09-23 08:55:27 · 1082 阅读 · 0 评论 -
iOS 开发的9个超有用小技巧
1.如何快速的查看一段代码的执行时间。12#define TICK NSDate *startTime = [NSDate date]#define TOCK NSLog(@"Time: %f", -[startTime timeIntervalSinceNow])在想要查看执行时间的代转载 2015-03-22 11:51:05 · 488 阅读 · 0 评论