Foursquare's Layout
Anyone knows how is structured Foursquare App's layout?
Look this: Foursquare's App Screenshot (the view on the right)
I'm trying to create a similar layout. There is a navigation bar and after? TableView header? I'm not understanding what is the bar 开发者_开发技巧with user's avatar and the others stuff.
Thank you very much.
Looks fairly standard to me.
A UIView, with a UIImageView and 3 UILabels.
Then two UIButtons, and finally..
A UITableView nested in the bottom..
As the other user said, if the top section scrolls when you move the table, the Image, Labels and Buttons are sat inside the TableView Header.
UITableView *table = [[UITableView alloc] init];
table.tableHeaderView = UIView including image, labels and buttons
精彩评论