I have an UITableview. When a row is selected an UIActionSheet pops up. To add the UIActionSheet I used
[actionSheet showFromRect:cell.bounds inView:cell animated:NO];
Everything works fine, i can select items in the UIActionView, i can tap outside and it disappears. BUT when it disappears (from tapping outside or selecting an item) and i tap fast on something else, e.g. the background, the app crashes with following message:
-[UIActionSheet _dismissForTappedIndex:]: message sent to deallocated instance 0x173796d0
I guess the app weants to dismiss the sheet, but it has been released before? Thank you for any help.
Try to keep a reference to the UIActionSheet. Make it a property for example. This error means that ARC is deallocating the object too fast.IF the error stops happening then thats the problem.