KireiShare 0.0.2

KireiShare 0.0.2

Abdullah Tawfik维护。



  • 作者
  • Takuya Okamoto

Gloss

KireiShare

分享操作的模态视图。设计简单、实用、干净。

截图

Output sample

如何使用

let shareView = KireiShareView(
    text: "Awesome!!Dope!!!",
    url: "http://uniface.in/",
    image: thumbnail
)
shareView.show()

可选定制

自定义参数

shareView.otherButtonTitle = "その他"
shareView.cancelButtonTitle = "キャンセル"
shareView.copyLinkButtonTitle = "リンクをコピー"
shareView.copyFinishedMessage = "コピーしました。"
shareView.animationDuration = 0.2

自定义按钮列表

shareView.buttonList = [
    .Other,
    .CopyLink,
    .Facebook,
    .Twitter,
]

添加自定义按钮

shareView.buttonList = [
    .Other,
    .CopyLink,
    .Facebook,
    .Twitter,

    // add your button
    .Custom(
        title: "Tumblr",
        icon: UIImage(named:"tumblr"),
        onTap: {
            shareToTumblr()
            shareView.dismiss()
        }
    ),
]

开发者: @tk_365

设计师: @mackymakiosh