仿写微信分享功能
- iOS 8.0+
- Xcode 8.3+
- Swift3.1
- 模仿微信ShareView
- 模仿九宫格分享View
- 更好的自定义
- 完善注释,更好的readme
-
导入方法:
- 方法一(推荐使用):CocoaPods:
pod 'CWShareView'
- 方法一(推荐使用):CocoaPods:
-
在相应位置导入头文件:
import CWShareView
-
调用下列任意方法即可:
let clickedHandler = { (shareView: ShareView, indexPath: IndexPath) in
print(indexPath.section, indexPath.row)
}
let title = "网页由mp.weixin.qq.com提供"
let shareView = ShareView(title: title,
shareItems: [shareList1, shareList2],
clickedHandler: clickedHandler)
shareView.show()
CWShareView is released under the MIT License.