iOS 字符串问题。一种有效,一种无效,有何作用?

发布于 2024-12-07 01:47:13 字数 646 浏览 0 评论 0原文

.h

NSString *_maplink;
@property (nonatomic, retain) NSString *mapLink;

从.m 中的

可以看出,

NSString *link = [NSString stringWithFormat:@"http://maps.google.com/maps?saddr=%f,+%f&daddr=thatCity+thatState+515+north+state+street", latitude, longitude];

我稍后需要该属性,所以我

mapLink = [NSString stringWithFormat:@"http://maps.google.com/maps?saddr=%f,+%f&daddr=thatCity+thatState+515+north+state+street", latitude, longitude];

NSLog(@"the map link %@", mapLink);

另一个函数中,并且得到了 ole SIGABRT。

迪莉是什么?

from the .h

NSString *_maplink;
@property (nonatomic, retain) NSString *mapLink;

in the .m

this one is fine

NSString *link = [NSString stringWithFormat:@"http://maps.google.com/maps?saddr=%f,+%f&daddr=thatCity+thatState+515+north+state+street", latitude, longitude];

i need the property later so i'm

mapLink = [NSString stringWithFormat:@"http://maps.google.com/maps?saddr=%f,+%f&daddr=thatCity+thatState+515+north+state+street", latitude, longitude];

then i

NSLog(@"the map link %@", mapLink);

in a different function and I get the ole SIGABRT.

what's the dilly o?

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

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

发布评论

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

评论(1

世界等同你 2024-12-14 01:47:13

简单地将字符串分配给 mapLink 变量不会保留它。您需要:

self.mapLink = [NSString stringWithFormat:@"http://maps.google.com/maps?saddr=%f,+%f&daddr=thatCity+thatState+515+north+state+street", latitude, longitude];

Simply assigning your string to the mapLink variable won't retain it. You need to:

self.mapLink = [NSString stringWithFormat:@"http://maps.google.com/maps?saddr=%f,+%f&daddr=thatCity+thatState+515+north+state+street", latitude, longitude];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文