anil
anil

Reputation: 121

UITabBarController crashing issue

i have used UITabBarController Application. i have add 10 navigation controller inside tabbar.only five item show on the tabbar. bt when we click no 5 itemtabbar second time then application crashed. Error(Interrupted).

Thanks in advance.

Upvotes: 0

Views: 222

Answers (2)

clawoo
clawoo

Reputation: 791

The tab bar has nothing to do with it. You are sending your UITableView too many release calls. Make sure that the FavoriteTableViewController has proper memory management. My guess is that you are sending it an autorelease when you create it and later on when you leave the screen you send it another release or viceversa.

Upvotes: 0

vijay adhikari
vijay adhikari

Reputation: 2455

this error (message sent to deallocated instance ) means that you are releasing something early and again you want to access . check where you release something and again using it .

Upvotes: 1

Related Questions