美文网首页swiftiOS
iOS仿微信录像和拍照(swift5.0)

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

作者: WMSmile | 来源:发表于2019-11-27 11:07 被阅读0次

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)

展示

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述 2.gif

相关文章

网友评论

    本文标题:iOS仿微信录像和拍照(swift5.0)

    本文链接:https://www.haomeiwen.com/subject/pffpwctx.html