码迷,mamicode.com
首页 >  
搜索关键字:uitableviewcell    ( 739个结果
iOS 代码自定义cell示例
底色标黄为代码自定义cell重点处,入手从这几点即可。 MyCell.h #import @interface MyCell : UITableViewCell @property(nonatomic,strong)UILabel *ageLabel; @property(nonatomic,strong)UILabel *nameLabel;...
分类:移动开发   时间:2015-08-01 23:36:22    阅读次数:170
ios开发-2015-07-31
ios开发:自定义UITableViewCell(使用xib文件在单元格格式都相同的情况下使用、代码动态定义单元格格式)、单元格的头/底自定义(FooterView/HeaderView)
分类:移动开发   时间:2015-08-01 09:56:25    阅读次数:140
tableView循环利用性能优化
tableView性能优化 - cell的循环利用方式1/** * 什么时候调用:每当有一个cell进入视野范围内就会调用 */- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSInde....
分类:其他好文   时间:2015-08-01 00:56:09    阅读次数:149
Snail—UI学习之UITableView之自定义UITableViewCell
之前都是用得系统的UItableViewCell 局限性比较大 不够自由 自定义的cell满足了我们所有的需求 以后做项目的时候也是大部分都是用自定义的 后面我们要把数据放在数据模型里 数据源数组里将要存储的是model BookModel.h #import @interface WJJBookModel : NSObject @property (nonatomic,co...
分类:其他好文   时间:2015-07-31 20:25:52    阅读次数:128
iOS-晋级之路- tableviewCell重用问题两种方法
最近看大神mj的代码,学到了这个方法,cell重用的第二种方法UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];static NSString *CellIdentifier = ...
分类:移动开发   时间:2015-07-30 00:38:30    阅读次数:171
自定义UITableViewCell(registerNib: 与 registerClass: 的区别)
自定义UITableViewCell大致有两类方法:使用nib1、xib中指定cell的Class为自定义cell类型(注意不是设置File's Owner的class)2、调用 tableView 的 registerNib:forCellReuseIdentifier:方法向数据源注册cell复...
分类:其他好文   时间:2015-07-29 18:35:21    阅读次数:117
自定义cell里的button获得cell的indexpath
假如你是用代码方式直接将控件(如UILabel、UIButton等)加到UITableView的cell中去的话,,,在出了-(UITableViewCell*)tableView:(UITableView*)tableViewcellForRowAtIndexPath:(NSIndexPath*)...
分类:其他好文   时间:2015-07-29 15:41:44    阅读次数:125
cell去掉底部多余的表格线
//去掉底部多余的表格线       [tableView setTableFooterView:[[UIView alloc] initWithFrame:CGRectZero]]; //最后一行分隔线顶头显示 //http://stackoverflow.com/questions/25770119/ios-8-uitableview-separator-i...
分类:其他好文   时间:2015-07-29 09:07:30    阅读次数:175
AutoLayout五、使用Masonry完成UITableViewCell的自适应高度
第一步、Base TableViewController 封装tableView的 数据源方法、代理方法。这里只给出cell height的代理函数部分: - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:.....
分类:其他好文   时间:2015-07-29 00:56:56    阅读次数:469
iOS设置导航与其标题的颜色及字体大小和系统默认TabBar的相关设置与使用方法
第一步://在info.plist中添加一个字段:view controller -base status bar 设置为NO;//导航颜色[[UINavigationBar appearance] setBarTintColor:[UIColor XXXX]];[[UITableViewCell ...
分类:移动开发   时间:2015-07-28 14:32:14    阅读次数:181
739条   上一页 1 ... 35 36 37 38 39 ... 74 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!