Scrollview like foursquare with maps + list

I am trying to understand how I can use a scrollview application, for example, a Foursquare application. The card position y corresponds to the list of revenue when scrolling.

screenshot

  • UIScrollview with map + income list as UIViews or
  • UITableView using a map as a HeaderSection and proceeds as a UITableViewCell (I tried this, but the map reloads after scrolling through the table) or
  • Sharing a map with a UITableview and synchronizing the position of a map with a table list?
+3
ios objective-c uitableview mkmapview foursquare
source share
4 answers

It looks very interesting. Create a Parallax effect between a UITableView and a UIMapView, such as FourSquare. Hope this will be helpful;)

https://github.com/stefanlage/SLParallaxController

+2
source share

My 2 cents: UITableView + MKMapView. Add an observer to the table View the scroll position and change the map borders accordingly when the observer fires.

Use the contentInset in the View table to display the map below. Use section headings for "Happening near chinatown" with transparent background

etc..

0
source share

UIScrollview with MKMapView + UITableView.

0
source share

After a lot of searching, you use the setPadding () function to achieve this effect;

Android Maps - Border Markers in the center of the upper half of the map area

-one
source share

All Articles