I would like to know how Tumblr app is adding a mini camera live view on collection view cell in their app? Is it UIImagePickerController of type camera resized? I would be glad if someone could give more idea on this implementation?
Asked
Active
Viewed 323 times
1 Answers
2
If you want to do that, you're going to have to use AVFoundation
. You can size and position the AVCaptureVideoPreviewLayer
however you'd like.

Logan
- 52,262
- 20
- 99
- 128
-
Found this as a great sample code for the task. https://github.com/ijason/FaceCamTest – Tharindu Madushanka Mar 21 '14 at 04:42