osx - MKMapView Broken on OS X 10.11? -


i have production app uses mkmapview , shows users map. can zoom using +/- key or via mouse scroll wheel , drag map location.

on os x 10.11.x drag location seems no longer work. zooming functions work, not map dragging. true of both production version (currently in mac app store) development versions built using xcode 7.0.1.

the os x deployment target 10.9.

the mkmapview added views manually using code:

_mapview = [[mkmapview alloc] initwithframe:cgrectzero]; _mapview.translatesautoresizingmaskintoconstraints = no; _mapview.autoresizessubviews = yes; _mapview.showsuserlocation = no; _mapview.maptype = mkmaptypestandard; _mapview.pitchenabled = no; _mapview.rotateenabled = no; _mapview.showszoomcontrols = yes; _mapview.scrollenabled = yes; _mapview.zoomenabled = yes; _mapview.showsbuildings = yes; _mapview.delegate = self; [self addsubview:_mapview]; 

has else seen or have ideas might going on, or if missing something? i'm hoping not os x mkmapview bug.

**** update: issue resolved in osx 10.11.2. yay apple! ****

this is confirmed bug (osx 10.11.0 , 10.11.1). radar: 22903136.


Comments

Popular posts from this blog

html - Outlook 2010 Anchor (url/address/link) -

javascript - Why does running this loop 9 times take 100x longer than running it 8 times? -

Getting gateway time-out Rails app with Nginx + Puma running on Digital Ocean -