Reputation: 3718
I ran across this problem where the UIAlertView does not trigger any handlers in the delegate. It works fine on all iOS 5.0 and later/ iOS 6 beta (iPhone4/4s, iPod, ipad1/2) device, but the problem is only with the iOS 6 beta 3 on iPad 3.
Upvotes: 0
Views: 922
Reputation: 4733
Even if your title is not nil, it crashes because you are invoking it within thread. Call it after main thread gets over. & your problem will be solved. :)
Upvotes: 0
Reputation: 3718
So I found the answer. This is a little weird, but looks like if you set title of the UIAlertView to nil, it seems to work. I know it sounds weird, but thats how I got it working on iPad3 iOS6 beta 3. when you set a title, it doesn't seem to work. Any better explanations for this? Or is it just a bug?
Upvotes: 1