https://bugzilla.novell.com/show_bug.cgi?id=684281
https://bugzilla.novell.com/show_bug.cgi?id=684281#c3 Geoff Norton <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #3 from Geoff Norton <[email protected]> 2011-04-06 17:49:03 UTC --- It appears that UITableView is not retaining the returned array, you can use the following to work around this issue while we investigate it further: NSArray array; [Export ("sectionIndexTitlesForTableView:")] public NSArray SectionTitles (UITableView tableview) { if (array == null) { string[] titles = new string[RowsInSection(tableview, 0)]; for (int index = 0; index < titles.Length; index++) titles[index] = index.ToString(); array = NSArray.FromStrings (titles); } return array; } -- 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
