Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a problem on the memory management of a tableviewcell (exc_bad_access).
One of mine tableviewcell include a uiwebview that loads asynchronous html data (loadHTMLString method) and the current controller is set as its delegate.
When i pop tableviewcontroller from my navigation controller too fast the app crashes.

In my opinion this is the reason why it fails:
- if cell deallocs before the controller => all ok, delegate is still live and i can even set its delegate to nil in its own dealloc method
- if cell deallocs after the controller (i guess because table view cells are autoreleased) => the app crashes because its delegate it's still set to the deallocated controller

Any idea how to correctly solve this?? Thank you..

CODE in cellForRowAtIndexPath:

...
CustomTableViewCell * cCell = (CustomTableViewCell*)cell; 
cCell.myWebView.delegate = self; 
[[cCell myWebView] loadHTMLString:html baseURL:baseURL];
....
share|improve this question
Could you give a code snippet? – fvwmer Jul 12 '12 at 10:41
TO check your guess you can add NSLog at cell and viewController classes dealloc, i'm sure autoreleased cell is deallocated before the controller. – A-Live Jul 12 '12 at 13:37
App crashes before NSLOG in the cell dealloc method is called. I guess autorelease pool comes after controller is deallocated. Obviously i tap back button really really fast as controller is pushed. If i comment "[[cCell myWebView] loadHTMLString:html baseURL:baseURL];" everything works fine.. – user1427835 Jul 12 '12 at 14:50
Post the code for the cell. Something else is amiss here. – futureelite7 Jul 13 '12 at 1:08

1 Answer

Try to add stopLoading at cell deallocation before releasing the web view.

share|improve this answer
Tried..but nothing happens.. – user1427835 Jul 12 '12 at 14:51
@user1427835 Post the backtrace please. – A-Live Jul 12 '12 at 15:06
*** -[MyCustomViewController respondsToSelector:]: message sent to deallocated instance 0x5c607f0 [unknown](gdb) – user1427835 Jul 12 '12 at 16:08
@user1427835 is this controller the delegate of your webViews ? – A-Live Jul 12 '12 at 16:21

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.