When I instantiate and present an UIImagePickerController, sometimes it will take up to 5 seconds for the video feed to show up and there will just be a black screen. I do instantiate the UIImagePickerController multiple times from different views. What could be the source of this problem?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
Delays on UI stuff are usualy related to code not being ran on Main Thread. Only Main Thread can change the UI, so if your code happens to run on some other background thread it will have a few seconds delay. You can guarantee a block of code will be ran on Main Thread with:
I've answered a similar problem here: dismissViewControllerAnimated:completion: has a couple second delay |
|||
|
|