最开始怎么都不会定位,后来在Resources中的***-Info.plist中加NSLocationWhenInUseUsageDescription、NSLocationAlwaysUsageDescription两个key,value值没有在意,应该随意吧。
代码中添加
if([locationmanager respondsToSelector:@selector(requestWhenInUseAuthorization)])
{
[locationmanager requestWhenInUseAuthorization];
}
来判断是否是ios8。