BlueDolphin
BlueDolphin

Reputation: 9765

How to "simplify" UIImagePickerController

I am using UIImagePickerController to take photo, there are two steps involved, "Take photo" and "Use photo". Is there any way to override the behavior, merge these two action in one? Say "Take and use photo".

Thanks.

Upvotes: 6

Views: 1211

Answers (1)

Louis Gerbarg
Louis Gerbarg

Reputation: 43452

There is no way in the current SDK to do this, you should file a bug requesting the feature. There are some published examples where people crawl around in the view hierarchy to programmatically read surfaces and trigger UI elements, but those are complex to do, can have weird visual artifacts that cause support issues, and are likely to break with firmware updates.

Upvotes: 2

Related Questions