https://bugzilla.novell.com/show_bug.cgi?id=640406
https://bugzilla.novell.com/show_bug.cgi?id=640406#c0 Summary: UITableViewCell - Cannot reset the EditingAccessoryView to NULL Classification: Mono Product: MonoTouch Version: unspecified Platform: Macintosh OS/Version: Mac OS X 10.6 Status: NEW Severity: Normal Priority: P5 - None Component: Class Libraries AssignedTo: [email protected] ReportedBy: [email protected] QAContact: [email protected] Found By: Customer Blocker: --- Description of Problem: When you set the EditingAccessoryView of a UITableView cell to null there's an ArgumentException. This is not the case when you do this for the AccessoryView Steps to reproduce the problem: 1. Declare a UITableViewCell and instantiate for a UITableView in a UITableViewSource GetCell delegate method. 2. Change the accessory & editing accessory view. UIActivityIndicatorView activityIndicator = new UIActivityIndicatorView(UIActivityIndicatorViewStyle.Gray); cell.AccessoryView = activityIndicator; cell.EditingAccessoryView = activityIndicator; 2. Now set it back to null cell.AccessoryView = null; cell.EditingAccessoryView = null; Actual Results: ArgumentNullException for the editing accessory view. This is not good. Expected Results: Should be able to "reset" the cell state without any exceptions. How often does this happen? Everytime Additional Information: -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug. You are the assignee for the bug. _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
