Just started using Xcode 4.5 and I got this error in the console:
Warning: Attempt to present < finishViewController: 0x1e56e0a0 > on < ViewCont
This kind of warning can mean that You're trying to present new View Controller
through Navigation Controller
while this Navigation Controller
is currently presenting another View Controller
. To fix it You have to dismiss currently presented View Controller
at first and on completion present the new one.
Another cause of the warning can be trying to present View Controller
on thread another than main
.