UITableViewHeaderFooterView的使用+自动布局
使用UITableView的header或footer复用时,如果采用自动布局,你会发现有约束冲突,下面这样写可以消除约束冲突:
#import
@interface SectionView : UITableViewHeaderFooterView
@property (nonatomic, cop...
分类:
其他好文 时间:
2015-07-04 09:49:09
阅读次数:
423
QQ下拉列表,最近找了一下网上没有类似的例子,今天做了一个Demo
图片可以在评论里留言留下邮箱,
#import "ViewController.h"
@interface
ViewController ()UITableViewDelegate,UITableViewDataSource>
@property (nonatomic,stron...
分类:
移动开发 时间:
2015-05-27 12:28:37
阅读次数:
592
怎样设置包括第一栏在内相同高度的section(小技巧,虽然容易但容易忽略)
*第一步,在viewdidload里将尾部设为0,table.sectionFooterHeight = 0;(代理方法)- (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section{
...
分类:
移动开发 时间:
2015-05-25 22:38:07
阅读次数:
166