在使用tableview时,有时我们需要在cell中添加button和label,以便添加某项功能,而且往往点这个button的方法中需要知道button所在cell中label内存放的值。一般而言我们可以用tag来做,但当table有很多行的时候,设置tag就没有那么方便了,这里我介绍另外一种方法...
分类:
移动开发 时间:
2014-09-10 20:57:30
阅读次数:
260
创建TableView的navigationItem的Text左右Button-(void)customizeNavigationBarContent{//titleViewUILabel*labelTitle=[[UILabelalloc]initWithFrame:CGRectMake(0,0,100,40)];labelTitle.text=@"添加联系人";labelTitle.textColor=[UIColorwhiteColor];labelTitle.textAlignm..
分类:
其他好文 时间:
2014-09-10 02:57:50
阅读次数:
197
UITableViewDataSource 协议中常用方法
1.设置右边索引值
- (NSArray *)sectionIndexTitlesForTableView:(UITableView
*)tableView
2.设置分组标识
- (NSString *)tableView:(UITableView
*)tableView titleForHeaderInSecti...
分类:
移动开发 时间:
2014-09-09 16:13:58
阅读次数:
175
//指定tableView的数据源tableView.dataSource=self;//指定tableview代理tableView.delegate=self;//配置索引值的颜色tableView.sectionIndexColor=[UIColorlightGreenColor];//设置tableview的headerView(最上面显示的视图)UILabel*phoneLabel=[[UILabelalloc]initWithFrame:C..
分类:
其他好文 时间:
2014-09-05 03:24:51
阅读次数:
192
-(UITableViewCell*)tableView:(UITableView*)tableViewcellForRowAtIndexPath:(NSIndexPath*)indexPath{//重用标识符staticNSString*identifider=@"reuse";//去重用队列中根据标识符取可重用的cellAddressBookCell*cell=[tableViewdequeueReusableCellWithIdentifier:identifi..
分类:
其他好文 时间:
2014-09-05 03:24:31
阅读次数:
208
写代码有时和说话一样,要体现层次感,可能是首先罗列要点,然后再逐点 细化。但如果时而说要点,时而谈细节,就会造成听者理解上的障碍。如下的代 码就会有这样的一个问题:重构前:- (UITableViewCell *)tableView:(UITableView *)tableView cellForR...
分类:
移动开发 时间:
2014-09-05 00:52:30
阅读次数:
216
//设置行高-(CGFloat)tableView:(UITableView*)tableViewheightForRowAtIndexPath:(NSIndexPath*)indexPath{return80;}//分区-(NSInteger)numberOfSectionsInTableView:(UITableView*)tableView{//Returnthenumberofsections.return3;}//设置每个区有多少行共有多少行-(NSInteg..
分类:
其他好文 时间:
2014-09-04 11:59:50
阅读次数:
221
在iOS7系统的Mail App中TableViewCell的一个功能让我们做TableView的比较羡慕,就是滑动cell,右边出现了两个按钮,如下:网上在github上有很多大牛用custom tableViewCell的方法实现了这个效果,甚至更强,比如这两位:https://github.c...
分类:
移动开发 时间:
2014-09-01 22:33:53
阅读次数:
240
重构下单元格方法#pragma mark 单元格内容-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{// UITableViewCell...
分类:
其他好文 时间:
2014-09-01 13:57:23
阅读次数:
161
今天在看官方的TableView Guide,突然想起来最近写的一个代码中实现tableViewCell复用的时候有点问题:var cell = UITableViewCell(style: UITableViewCellStyle.Subtitle, reuseIdentifier: identi...
分类:
编程语言 时间:
2014-09-01 12:03:33
阅读次数:
300