iOS仿微信录像和拍照(swift5.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

发布了121 篇原创文章 · 获赞 54 · 访问量 44万+

猜你喜欢

转载自blog.csdn.net/wm9028/article/details/103271793
今日推荐