在iphone SDK中观察CLLocationCooperative2D

发布于 2024-08-04 00:34:04 字数 583 浏览 6 评论 0原文

在iPhone SDK中,我们是否只能观察对象,而不是像CLLocationCooperative2D那样的struts?

例子: 我有一些非常简单的代码,我想在其中观察 CLLocationCooperative2D 类型的属性,我已确保在 ABC.m 中综合它。

@interface ABC
{
 CLLocationCoordinate2D currentLocation;
}
@property (nonatomic, readwrite) CLLocationCoordinate2D currentLocation;

现在,在另一个类中,我这样做:

[ABC addObserver:self forKeyPath:@"currentLocation" options:NSKeyValueObservingOptionNew context:NULL];

出于某种原因,observeValueForKeyPath 方法永远不会报告键路径“currentLocation”已更改。

谢谢,

Sjs

In iPhone SDK, can we only observe Objects, and not struts like CLLocationCoordinate2D?

Example:
I've got some very simple code where I'd like to observe a property of type CLLocationCoordinate2D, I've made sure to synthesize it in ABC.m.

@interface ABC
{
 CLLocationCoordinate2D currentLocation;
}
@property (nonatomic, readwrite) CLLocationCoordinate2D currentLocation;

Now in another class I do:

[ABC addObserver:self forKeyPath:@"currentLocation" options:NSKeyValueObservingOptionNew context:NULL];

For some reason, the observeValueForKeyPath method never reports that keypath "currentLocation" changed.

Thanks,

Sjs

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦醒灬来后我 2024-08-11 00:34:04

这就是你所说的字面意思吗?

[ABC addObserver:self forKeyPath:@"currentLocation" options:NSKeyValueObservingOptionNew context:NULL];

如果是这样,那么我认为问题在于您正在观察 ABC 类,而不是 ABC 类的实例。假设您有 ABC 类的一个实例,请尝试观察它。

ABC* myObject = [ [ [ ABC alloc ] init ] autorelease ];
[ myObject addObserver: self forKeyPath: @"currentLocation" options: NSKeyValueObservingOptionNew context: NULL ];

Is this the literal call that you make?

[ABC addObserver:self forKeyPath:@"currentLocation" options:NSKeyValueObservingOptionNew context:NULL];

If so then I think the issue is that you are observing the class ABC and not an instance of the class ABC. Assuming that you have an instance of class ABC try observing that.

ABC* myObject = [ [ [ ABC alloc ] init ] autorelease ];
[ myObject addObserver: self forKeyPath: @"currentLocation" options: NSKeyValueObservingOptionNew context: NULL ];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文