UITableview
我首先用的storyboard上的tableview初始化了
第一行是自定義的collectionview放在了cell里 里面是自定義的Collectioncell
第二行是自定義的headerview
第三行是自定義的Cell
首先tableview自動計算autolayout高度的方法是可以用的
tableView.estimatedRowHeight=200;
tableView.rowHeight=UITableViewAutomaticDimension;
初始化自定義view
引用
private lazy var headerView:HeaderView= {
let h =HeaderView.loadFromNib()
return h
}()
view本身從nib加載
class func loadFromNib() ->HeaderView{
return NSBundle.mainBundle().loadNibNamed("Header", owner:self, options:nil).last as! HeaderView
}
加載SectionHeaderView
let view = tableView.dequeueReusableCellWithIdentifier(kSectionHeaderViewReuseIdentifier) as! SectionHeaderView
//kSectionHeaderViewReuseIdentifier 是Identifier
加載自定義cell
let cell = tableView.dequeueReusableCellWithIdentifier(kHotCellReuseIdentifier, forIndexPath: indexPath) as! HotCell
//kHotCellReuseIdentifier 是Identifier
UICollection跟上面差不多页滚。
附加:
Swift第三方庫
網(wǎng)絡(luò)庫 Alamofire
AutoLayout庫 ?SnapKit