Skip to content

Releases: linhay/EmptyPage

3.3.1

11 Apr 14:39
7f44bc9
Compare
Choose a tag to compare

fix: 显示空白页时禁止ScrollView滑动

3.3.0

26 Sep 12:14
Compare
Choose a tag to compare

新增:

  1. 新增全局设置空白页接口函数, 以下是相关函数示例:
/// 全局设置空白页
UIScrollView.ep.setGlobalEmpty { (_) -> UIView? in
  return EmptyPageView.Template.text.set(text: "纯文字").mix()
}

/// 全局设置[加载]空白页
UIScrollView.ep.setGlobalFirstLoading { (_) -> UIView? in
	return 
}
  1. 新增 ep.reload()函数, 用于空白页A已显示时更换空白页B而不需要使用reloadData()
 vc.tableView.ep.setEmpty(EmptyPageView.Template.text.set(text: "纯文字").mix())
 vc.tableView.ep.reload()

3.2.0

03 Jun 08:38
Compare
Choose a tag to compare
3.2.0 Pre-release
Pre-release

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)

3.1.1

28 May 05:58
Compare
Choose a tag to compare

add:

UIScrollView().ep.emptyView { set get }

3.1.0

23 Apr 06:27
Compare
Choose a tag to compare

Support swift 5.0 🎉 🎉 🎉

Name modification:

tableView.setEmpty(_:) => tableView.ep.setEmpty(_:)
tableView.setEmpty(_:) is marked as deprecated

Add:

EmptyPageTemplateProtocol: Used to customize the template view.
(Can refer to the built-in template view)

2.0.1

24 Dec 11:09
Compare
Choose a tag to compare

修复: 模板视图执行 func set(image: UIImage?) 时约束问题.
修改: 模板配置函数现不会提示返回值未使用.
添加: demo 约束示例控制器.

2.0.0

17 Oct 06:33
Compare
Choose a tag to compare
  • 移除xib

  • 支持 预置模板视图 更多约束调整

  • 支持 预置模板视图 链式配置

  • 支持 预置模板视图 更多视图配置

  • 预置模板视图 配置函数统一为

    • func config: 可直接修改控件属性

    • func set: 快速配置模板

    • func change: 约束调整

1.2.9.1

08 Jun 10:23
Compare
Choose a tag to compare

修复无法移除emptyView的问题

1.2.7

19 Jan 06:48
Compare
Choose a tag to compare

添加禁止滑动

1.2.6

19 Jan 03:37
Compare
Choose a tag to compare

空白页frame现在适配约束变化.