Using the default iOS camera button as UIButton

I am new to iOS development, so please be kind.

I want to use the default camera button as a UIButton. (I want the camera button to appear in the field in my form and you want to use the default graphics because users are familiar with it) I don’t see any way to insert it as a simple UIButton, I don’t want it on the toolbar.

If it is not possible to enable it this way, can I use it as a UIButton? Or can it cause any objections in viewing the application?

enter image description here

+5
source share
3 answers

, , .

+1

You can use UIBarButtonSystemItemCamerafrom UIBarButtonItem. This UIBarButtonItem, not UIButton, but this is the real deal.

+3
source

All Articles