From f61382037f5dc6bb08e926cd9172a1f28c14c76b Mon Sep 17 00:00:00 2001 From: carefree <946715806@qq.com> Date: Wed, 10 Mar 2021 14:45:43 +0800 Subject: [PATCH] update ReadMe --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 9f80075..62d0905 100644 --- a/README.md +++ b/README.md @@ -199,9 +199,9 @@ self.scrollView.easy.coordinator.animationDuration = 1 ```swift //Objective-C请调用easy_前缀的方法 @objc var easy_coordinator: EasyListCoordinator -@objc func easy_appendView(_ view: UIView) -@objc func easy_insertView(_ view: UIView, after element: Any) -@objc func easy_insertView(_ view: UIView, before element: Any) +@objc func easy_appendView(_ view: ViewOrClosure) +@objc func easy_insertView(_ view: ViewOrClosure, after element: Any) +@objc func easy_insertView(_ view: ViewOrClosure, before element: Any) @objc func easy_deleteElement(_ element: Any) @objc func easy_deleteAll() @objc func easy_beginUpdates() @@ -226,7 +226,7 @@ pod 'EasyListView' ```swift dependencies: [ - .package(url: "https://github.com/moliya/EasyListView", from: "1.0.0") + .package(url: "https://github.com/moliya/EasyListView", from: "1.1.0") ] ```