Created
January 28, 2020 09:41
-
-
Save CyberBison/4ad368368791ecd9c1304231cccc0814 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
extension CameraViewController : UIViewControllerRepresentable{ | |
public typealias UIViewControllerType = CameraViewController | |
public func makeUIViewController(context: UIViewControllerRepresentableContext<CameraViewController>) -> CameraViewController { | |
return CameraViewController() | |
} | |
public func updateUIViewController(_ uiViewController: CameraViewController, context: UIViewControllerRepresentableContext<CameraViewController>) { | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment