Using MonoTouch to develop my very first iPhone application for a customer, I've overridden the UITableViewDataSource.SectionIndexTitles function to provide a string[] array with what I thought would make the letters in the vertical band.

Currently I'm facing a working index band but without any characters displayed:

iPhone

(I do think the UITableViewDataSource.SectionIndexTitles has the native counterpart sectionIndexTitlesForTableView).

My question:

Can someone give me a hint on what I might be doing wrong here?

I do not have all A-Z characters but some characters missing, maybe this could be an issue?

link|improve this question

1  
I am not sure, but is your string[] array the same as an NSArray with NSString Objects? I have used it this way, and it always works - with all letters, as long as all letters are being returned by sectionIndexTitlesForTableView – user387184 Sep 24 '11 at 12:50
Thanks @user387184 - The string[] is actually defined in MonoTouch so I'll have no way of changing this signature. – Uwe Keim Sep 24 '11 at 12:52
feedback

2 Answers

up vote 4 down vote accepted

This is a bug in MonoTouch. A workaround is to create a new method in your table source class and decorate it with the Export attribute, passing the native ObjC method to override (sectionIndexTitlesForTableView:):

string[] sectionIndexArray;
//..
[Export ("sectionIndexTitlesForTableView:")]
public NSArray SectionTitles (UITableView tableview)
{                   
    return NSArray.FromStrings(sectionIndexArray);
}
link|improve this answer
1  
Was the bug reported on bugzilla.xamarin.com ? – poupou Sep 24 '11 at 14:36
1  
I haven't checked. – Dimitris Tavlikos Sep 24 '11 at 14:41
3  
Just checked, here it is: bugzilla.xamarin.com/show_bug.cgi?id=54 – Dimitris Tavlikos Sep 24 '11 at 14:56
@DimitrisTavlikos you are really fantastic! Once again, you helped me fast and accurate. Thanks a lot :-) – Uwe Keim Sep 24 '11 at 15:11
feedback

I would like to get back to my point...

can you show the way you build the returned value for sectionIndexTitlesForTableView? I just tried with SimpleSectionedTableView sample app from apple http://developer.apple.com/library/ios/#samplecode/TableViewSuite/Introduction/Intro.html#//apple_ref/doc/uid/DTS40007318

with this code:

- (NSArray *)sectionIndexTitlesForTableView:(UITableView *)tableView {
    NSMutableArray *a = [[NSMutableArray alloc]initWithCapacity:10];
    for (int i = 0; i<[regions count]; i++) {
        Region *r = [regions objectAtIndex:i];
        NSString *s = r.name;
        [a addObject:s];
    }
    NSArray *ax = [NSArray arrayWithArray:a];
    return ax;


}

And everything works fine...

link|improve this answer
hi, just as a comment to whoever downvoted this - even though I don't know the details of MonoTouch, I prepared &tested the code sample and the comments point in the correct direction... so, the minimum one would expect as fairness is a short explanation for the downvote, also so that other readers can understand the reason - thanks – user387184 Sep 25 '11 at 8:40
1  
MonoTouch is something that lets you write an application in C#/.Net, which is then compiled into a native iOS application. So your ObjC answer here is not relevant to this question. – MusiGenesis Sep 25 '11 at 12:30
feedback

Your Answer

 
or
required, but never shown

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