Hi!
I know that for some people my question seems simple.. but while I didn't found the issue on the web, it can be useful here ! :-)
So I have a UITableViewController, created programmatically, in which I have many sections and details.
I decided to add a map after the tableView, to show where are we (following the content of the tableView).
But, using only code for that app, I've created a map using, so the map is after the tableView :
Code:
mapView = [[MKMapView alloc]initWithFrame:CGRectMake(10.0, 440.0, 300, 200)];
Everything's fine, but my problem is the scrolling :
The scrolling is limited to the tableView, and when I scroll, I can see the map just after the table, but when I release my hand, it goes back to the bottom
Any Ideas?
I a have problem to create a scrollView including the tableview and the map!
Thanks!