We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
// @weakify(self) // CLGeocoder *geocoder = [[CLGeocoder alloc] init]; // [geocoder reverseGeocodeLocation:location completionHandler:^(NSArray *placemarks,NSError *error){ // @strongify(self) // if(placemarks.count > 0){ // CLPlacemark *placemark = [placemarks objectAtIndex:0]; // self->_sProvince = placemark.administrativeArea; // self->_sCity = placemark.locality; // } // }];
The text was updated successfully, but these errors were encountered:
1.参看原来的OC UIKit中的使用方式 2.避免频繁的变更地图位置 3.检查是否有循环引用 4.写个简单的Demo同样代码测试,看频繁更新地图位置 内存是否有暴增并崩溃 5.OCUIKit 在半年前不在维护了
Sorry, something went wrong.
No branches or pull requests
// @weakify(self)
// CLGeocoder *geocoder = [[CLGeocoder alloc] init];
// [geocoder reverseGeocodeLocation:location completionHandler:^(NSArray *placemarks,NSError *error){
// @strongify(self)
// if(placemarks.count > 0){
// CLPlacemark *placemark = [placemarks objectAtIndex:0];
// self->_sProvince = placemark.administrativeArea;
// self->_sCity = placemark.locality;
// }
// }];
The text was updated successfully, but these errors were encountered: