I have this problem when I simulate my app, its not an error or a warning but it appears in my console, has anyone ever experienced this before?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
In my case, this error occurs when you click two tabs in a tableview very fast.
The result causes wrong titlename, back button disappear. Someone mentioned that when you push a view,
set animated:NO. The error will disappear but still causes some strange behavior. It pushes two views, then you need to back twice to get back the tableview screen.Method I tried in order to resolve this problem:
add
BOOL cellSelected;in
viewWillAppearcellSelected = YES;in didselectcell delegate
if (cellSelected){cellSelected = NO; do action ; }This helps prevent clicking two different cells very fast.