All Projects → takuoka → KireiShare

takuoka / KireiShare

Licence: other
Simple, Beautiful and Light Weight view for share action.

Programming Languages

swift
15916 projects
ruby
36898 projects - #4 most used programming language

Gloss

KireiShare

Modal view for share action. Simple, useful and clean design.

Screenshot

Output sample

How To Use

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

Optional Customization

Custom Parameter

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

Custom Button List

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

Add Custom Button

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

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

Developer: @tk_365

Designer: @mackymakiosh

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].