[Mono-bugs] [Bug 684281] Section index text is not shown for UITableView
bugzilla_noreply at novell.com
bugzilla_noreply at novell.com
Wed Apr 13 10:04:36 EDT 2011
https://bugzilla.novell.com/show_bug.cgi?id=684281
https://bugzilla.novell.com/show_bug.cgi?id=684281#c4
Karl Brehme <karl at e-magesolutions.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |karl at e-magesolutions.com
--- Comment #4 from Karl Brehme <karl at e-magesolutions.com> 2011-04-13 14:04:35 UTC ---
This was showing to me just numbers (index for each item of the section 0 (like
A letter of the index)), so I found that must change this to:
NSArray array;
[Export ("sectionIndexTitlesForTableView:")]
public NSArray SectionTitles (UITableView tableview)
{
if (array == null)
{
array = NSArray.FromStrings (SectionIndexTitles(tableview));
}
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.
More information about the mono-bugs
mailing list