美文网首页
Swift的一些坑(UITableview引用自定义View和自

Swift的一些坑(UITableview引用自定义View和自

作者: CRAZYBADAM | 来源:发表于2016-09-19 18:06 被阅读1163次

UITableview

我首先用的storyboard上的tableview初始化了

UITableController

第一行是自定义的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第三方库

网络库 Alamofire

AutoLayout库  SnapKit

相关文章

网友评论

      本文标题:Swift的一些坑(UITableview引用自定义View和自

      本文链接:https://www.haomeiwen.com/subject/rfenettx.html