pstinnett
pstinnett

Reputation: 275

Recreating iOS Camera app overlay buttons

I'm trying to recreate the Camera.app buttons and interface from iOS in my own, custom camera application built on GPUFilter. Specifically talking about the Flash, Options, and front vs back camera button toggle that are across the top of the app:

camera app

Curious to know if these are built into Storyboards as UI objects or if there's another easy way to recreate these without totally reprogramming. I'm also interested in using the overlay table view that they use (in picture above) for options.

Thanks!

Upvotes: 4

Views: 2690

Answers (1)

Mohammad Rabi
Mohammad Rabi

Reputation: 1412

You can using AVCamCaptureManager and AVCamRecorder classes. Apple has a demo program build on its developer site here.

Upvotes: 2

Related Questions