欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

iOS仿微信录像和拍照(swift4.0)

程序员文章站 2022-05-31 17:17:13
...

WMVideo

仿微信录像和拍照,record Video and photo functions exporter

源码地址

使用

        let vc = WMCameraViewController()
//        vc.inputType = .video
        vc.videoMaxLength = 20
        vc.completeBlock = { url, type in
            print("url == \(url)")
            //video
            if type == .video {
              //code
            }
            //image
            if type == .image {
                //code
                           
             }
        }
        present(vc, animated: true, completion: nil)

展示

iOS仿微信录像和拍照(swift4.0)
iOS仿微信录像和拍照(swift4.0)
iOS仿微信录像和拍照(swift4.0)
iOS仿微信录像和拍照(swift4.0)