gpt4 book ai didi

ios - 使用字符串作为变量名 iOS

转载 作者:行者123 更新时间:2023-11-29 13:14:11 25 4
gpt4 key购买 nike

<分区>

我在寻找如何为我的 CLLocationCoordinate2D 名称变量使用字符串时遇到了一些麻烦。在我的代码中,我得到了 90 个位置:

CLLocationCoordinate2D location1;
...
CLLocationCoordinate2D location90;

我想调用这个方法:

locationConverToImage = [myMapView convertCoordinate:location1 toPointToView:drawView];

在这样的 for 循环中:

for (int i=1; i<=90; i++) {
NSString *newCoord = @"location";
[newCoord stringByAppendingString:[NSString stringWithFormat:@"%d",i]];
locationConverToImage = [myMapView convertCoordinate:newCoord toPointToView:drawView];
}

但问题是我不能使用字符串作为变量名。我该怎么办?

谢谢。

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com