0

在这里扯我的头发我需要将值作为一个字符串放入一个数组中,这里有人建议我这样设置......

[twitterLocation addObject:[NSString stringWithFormat:@"%g,%g", latitude, longitude]];

但是,这是行不通的。纬度、经度在我的日志中包含值,但不会合并到字符串和数组中 - 它返回为 NULL。我的纬度,经度设置为双倍谢谢

4

1 回答 1

1

阅读评论我猜你至少需要分配你的数组:

double lat = 0.3231231;
double lon = 0.4343242;
NSMutableArray *twitterLocation = [[NSMutableArray alloc]init];
[twitterLocation addObject:[NSString stringWithFormat:@"%g%g", lat, lon]];

如果您跳过分配,则可变数组没有用于保存对象的内存位置。

于 2013-01-21T22:24:39.797 回答