#import @interface Label_TableViewCell : UITableViewCell//分别声明 你要创建的UILabel 和 UIIMageView/*** 图片*/@property (nonatomic,retain)UIImageView *HeadImageVi...
分类:
其他好文 时间:
2015-09-28 20:41:21
阅读次数:
158
iOS开发UI篇—UITableviewcell的性能问题一、UITableviewcell的一些介绍UITableView的每一行都是一个UITableViewCell,通过dataSource的 tableView:cellForRowAtIndexPath:方法来初始化每?行UITableVi...
分类:
移动开发 时间:
2015-09-28 13:12:45
阅读次数:
156
以前做tableViewCell的button点击事件,总是建立一个全局的可变数组,把data放在数组里,点击获取button的tag值,根据tag从数组了里取data。 其实,如果section只有一个的时候,可以直接获取点击的路径来点击的cell。 NSIndexPath *selectInd....
分类:
其他好文 时间:
2015-09-28 11:23:48
阅读次数:
175
自定义Cell如图一个View上面放了四个Label分别连线到.m文件中@property (weak, nonatomic) IBOutlet UILabel *nameLabel;@property (weak, nonatomic) IBOutlet UILabel *positionLabe...
分类:
其他好文 时间:
2015-09-27 22:54:06
阅读次数:
454
-(NSArray*)tableView:(UITableView *)tableView editActionsForRowAtIndexPath:(NSIndexPath *)indexPath{ UITableViewRowAction *rowAction = [UITableView...
分类:
移动开发 时间:
2015-09-26 06:56:37
阅读次数:
235
一、UITableViewStylePlain1.有多段时 段头停留(自带效果)2.没有中间的间距和头部间距(要想有的重写UITableViewCell \UITableViewHeaderFooterView里面的setFrame方法)扩展:让段头不停留(取消粘性效果)- (void)scroll...
分类:
其他好文 时间:
2015-09-25 20:09:04
阅读次数:
263
}else if (indexPath.row == 2){ UITableViewCell *cell2 = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:@"cell2"]...
分类:
其他好文 时间:
2015-09-24 21:13:25
阅读次数:
162
首先重写UITableViewCell初始化方法:- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier{ self = [super initWithStyle:s...
分类:
移动开发 时间:
2015-09-23 15:06:21
阅读次数:
186
第一步:-(void)viewDidLayoutSubviews { if ([_leftTableView respondsToSelector:@selector(setSeparatorInset:)]) { [_leftTableView setSeparatorInset:UIEd...
分类:
其他好文 时间:
2015-09-22 10:18:57
阅读次数:
273
一、自定义cell 自定义cell就是创建一个UITableViewCell的子类。 把cell上的控件创建都封装在子类中,简化UIViewController中的代码 示例代码分析: 1.需要建立tabelViewCell类, 在其中进行cell上控件的添加 2.在tabelViewCell.m....
分类:
其他好文 时间:
2015-09-21 21:21:01
阅读次数:
210