iOS DeveloperiOS学习笔记

微信朋友圈拍照菜单SheetAlert

2017-02-17  本文已影响98人  死神一护

WechatSheetAlertDemo

想要实现和微信朋友圈一摸一样的sheetAlert吗,请尝试下这个库,简单好用,1行代码即可。大家看图就好,简洁明了

A elegant and WeuiStuff sheetAlert for Wechat timeLine 微信朋友圈拍照菜单SheetAlert

WechatSheet.png

WechatSheet is a custom view for showing sheetAlert in Wechat. It is written by Swift3.

Featrue

WechatSheet.gif

Useage

It is very handy to use, just drag WechatSheetAlert.swift into your own project, user in as a common view! Code is like this:

func cameraDidTouch() {
        let sheetAlert = WechatSheetAlert(frame: UIScreen.main.bounds, titles: ["从手机相册选择","拍照", "视频"])
        sheetAlert.selectIndex = {
            [weak self] (index :Int) in
            switch index {
            case 0:
                //手机相册拉起
                print("从手机相册选择")
                break
            case 1:
                //拍照
                 print("拍照")
                break
            case 2:
            //小视频走起
                 print("小视频")
            break
            default:
                break
            }
            sheetAlert.hiddenSheet()
        }
        self.navigationController?.tabBarController?.view.addSubview(sheetAlert)
    }

In the code above,We want to show a menu sheet like Wechat does,Cool!

Contribute

We welcome any contributions. If u have any issue ,please let me know.

License

Hero is available under the MIT license. See the LICENSE file for more info.

上一篇 下一篇

猜你喜欢

热点阅读