Releases: linhay/EmptyPage
Releases · linhay/EmptyPage
3.3.1
3.3.0
新增:
- 新增全局设置空白页接口函数, 以下是相关函数示例:
/// 全局设置空白页
UIScrollView.ep.setGlobalEmpty { (_) -> UIView? in
return EmptyPageView.Template.text.set(text: "纯文字").mix()
}
/// 全局设置[加载]空白页
UIScrollView.ep.setGlobalFirstLoading { (_) -> UIView? in
return
}
- 新增
ep.reload()
函数, 用于空白页A已显示时更换空白页B而不需要使用reloadData()
vc.tableView.ep.setEmpty(EmptyPageView.Template.text.set(text: "纯文字").mix())
vc.tableView.ep.reload()
3.2.0
add:
Add the firstLoadingView
property to reloadData()
for the first time, correlation functions:
setFirstLoading(_ view: UIView())
collectionView.firstLoadingView = UIView()
ep.setFirstLoading(view)
新增:
新增 firstLoadingView
属性, 用于第一次 reloadData()
, 以下是相关函数:
setFirstLoading(_ view: UIView())
collectionView.firstLoadingView = UIView()
ep.setFirstLoading(view)