Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have noticed in the iTunesConnect iOS app, the first and last cells of the grouped UITableView stay on screen even though the other cells are scrolling through them. They also move with the tableview. For example when scrolling to the bottom of the table (moving up), the last cell moves up with the table as it leaves the bottom of its position on screen.

Does anyone have an example of how this could be done? I have tried setting the header and footer views but these scroll off screen when moving the tableView.

Thanks.

share|improve this question

2 Answers

up vote 1 down vote accepted

I think the best approach would be to use a plain UITableView with Header and Footer set, and "skin"/theme your custom UITableViewCells to look like grouped UITableViewCells.

you'd might want to have a look over here for some pointers on how to achieve this.

share|improve this answer

these "cells" are not cells but section header/footer. there are two types of headers - table and section. the table headers scroll with the table and the section will stay as long as the section is visible, the same goes to the footer. here is some tutorial http://www.iphonesdkarticles.com/2009/01/uitableview-sectioned-table-view.html

share|improve this answer
Are you sure it's the same for a grouped UITableView? Thanks. – Jamie Jan 30 '12 at 7:17
It is not the same. I have tried setting the header and footer views in a grouped table and they do not stick on the screen. Have a look at the other posters recommendation to see how it was done. – Jamie Jan 31 '12 at 6:53

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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