-
-
Notifications
You must be signed in to change notification settings - Fork 19
LXFNibloadable
林洵锋 edited this page Jul 6, 2018
·
2 revisions
当导入当前库时,UIView
和 UIViewController
则已经遵守了协议LXFNibloadable
仅需要xib
的名字与当前类相同即可正常使用
let view = LXFXibTestView.loadFromNib()
let controller = LXFXibTestViewController.loadFromNib()
// 注册 cell
tableView.registerCell(LXFCustomCell.self)
// 注册 headerFooterView
tableView.registerHeaderFooterView(LXFCustomHeaderView.self)
// 复用 cell
tableView.dequeueReusableCell(LXFCustomCell.self, forIndexPath: indexPath)
// 复用 headerFooterView.dequeueResuableHeaderFooterView(LXFCustomHeaderView.self)
tableView.
// 注册 cell
collectionView.registerCell(LXFCustomCell.self)
// 复用 cell
collectionView.dequeueReusableCell(LXFCustomCell.self, forIndexPath: indexPath)