https://bugzilla.novell.com/show_bug.cgi?id=649321
https://bugzilla.novell.com/show_bug.cgi?id=649321#c8 Geoff Norton <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution| |INVALID --- Comment #8 from Geoff Norton <[email protected]> 2010-10-28 20:17:42 UTC --- I took a breif look at your object and you have a number of problems: You use the same NSString ID for every controller, you should have a unique ID for each controller. You clobber the tableViewCellController every time you create a new cell, allowing it to be garbage collected, which means that any time a cell raises an event you'll get a crash. This holds true for many of your UITableViews. You're going to need to audit your code and ensure that you keep references to everything for as long as needed. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug. _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
