Weird crash issue on iOS 4.3

前端 未结 5 1846
广开言路
广开言路 2020-12-30 12:55

Since iOS 4.3 SDK is not in beta anymore, i believe i can talk about it here.

I\'m using UIApplicationExitsOnSuspend flag in my application to relaunch

5条回答
  •  情歌与酒
    2020-12-30 13:30

    I had the same problem. The solution is to set the delegate to nil before you release the geocoder. So you should add

    [reverseGeocoder setDelegate:nil]; 
    [reverseGeocoder release];
    

提交回复
热议问题