好的,所以我想用 initWithCoder 完全理解这段代码发生了什么。这是我在阅读了几个建议的文档并一遍又一遍地阅读一本关于委托、核心位置、指定初始化程序的书中的章节后认为正在发生的事情。
- 用一个指向 NSCoder 对象的指针初始化我的 viewcontroler。
- 如果可行,则创建位置管理器对象的实例
- 让委托成为我的视图控制器。
- 将位置精度设置为最佳。
告诉位置管理员开始更新。
将“存储在委托中”的信息记录到控制台。lat 和 long 存储在指向 NSArray 对象的指针中,该对象作为参数传递给 locationManager:DidUpdateLocations: 方法。
如果未找到位置,请在控制台中记录此状态。
.h 接口文件:
#import <UIKit/UIKit.h>
#import <CoreLocation/CoreLocation.h>
@interface WhereamiViewController : UIViewController
{
CLLocationManager *locationManager;
}
@end
.m 实现文件:
#import "WhereamiViewController.h"
@interface WhereamiViewController ()
@end
@implementation WhereamiViewController
- (id)initWithCoder:(NSCoder *)aDecoder
{
self = [super initWithCoder:aDecoder];
if (self){
//create location manager object
locationManager = [[CLLocationManager alloc] init];
//there will be a warning from this line of code
[locationManager setDelegate:self];
//and we want it to be as accurate as possible
//regardless of how much time/power it takes
[locationManager setDesiredAccuracy:kCLLocationAccuracyBest];
//tell our manager to start looking for its location immediately
[locationManager startUpdatingLocation];
}
return self;
}
- (void)locationManager:(CLLocationManager *)manager
didUpdateLocations:(NSArray *)locations
{
NSLog(@"%@", locations);
}
- (void)locationManager:(CLLocationManager *)manager
didFailWithError:(NSError *)error
{
NSLog(@"Could not find location: %@", error);
}
@end
一些进一步的问题:
1) 代码的 setDelegate 部分是否重要,因为“startUpdatingLocation 方法将存储它的数据?
2) 存储的数据是否归档?我之所以问是因为我设置的委托具有初始化程序 initWithCoder。从我读过的内容来看,这是一个归档数据的非归档文件。因此,可能来自 locationManager 的信息已存档,如果有意义,则需要取消存档。
我在 XCode 上收到此警告。难道我做错了什么?
我仍然想以这种方式设置代表还是有一种新的方式?在另一篇文章中,我记得看到类似的答案,<UIViewControllerDelegate>
并被告知将其放入我的界面文件中。
我意识到这篇文章的大部分内容可能没有意义,我可能完全错了,但我从失败中学到的最多,如果其他人选择学习为 ios 开发,也许他们将来会这样做。
谢谢你的时间。
问候