I'd like to create an app, which after clicking IBAction
button should display current frame from live camera on UIImageView
.
Using this method: https://developer.apple.com/library/ios/qa/qa1702/_index.html
I'd like to create fuction in IBAction
fuction. This one exactly:
- (void)captureOutput:(AVCaptureOutput *)captureOutput
Unfortunately after dozen of attempts I can't do it.
Summarizing: How to create a function (void), which contains image in
UIImage
form and save it to object in storyboard?
I'd be grateful for any help. Regards.