vote up 0 vote down star

I have a UITableView displaying a list of Cities. I want to separate them by State. I can't seem to figure out how to get it to pick the right items out of my Array. If Section 1 (Arizona) has 2 Cities and Section 2 (California) has 2 Cities, during cellForRowAtIndexPath, Section 2, City 1 has an index of 0, even though it's the 3rd item in my array. I thought about just turning my City Array into a State Array, where each item holds an Array of Cities, but I still don't know what section I'm on and therefore don't know which City Array under the States Array I would need to access.

Any help would be appreciated.

flag

Alright...apparently I failed to properly research this one. Sorry about the dumb question. – Pselus Nov 4 at 20:40
A little dumb, perhaps; but not extremely: I had a similar question when I first started doing iPhone dev. – Elliot Nov 4 at 20:55
1  
The reason you probably failed to solve this yourself is that the row and section properties are UIKit additions to NSIndexPath. If you look up the NSIndexPath documention, they are not documented. They are however documented here: developer.apple.com/iphone/library/… – Yannick Compernol Nov 4 at 21:48

2 Answers

vote up 6 vote down check

The method is called

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath

The indexpath parameter contains a row and section property.

indexPath.section  
indexPath.row
link|flag
vote up 5 vote down

you can use indexPath.section nd indexPath.row

link|flag

Your Answer

Get an OpenID
or

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