-2

.csv ファイルを解析して配列を作成しようとしました。次に、この関数を実行します。

//Array

NSString *filePath = [[NSBundle mainBundle] pathForResource:@"499CSV" ofType:@"csv"];
NSString *csvString = [NSString stringWithContentsOfFile:filePath encoding:NSUTF8StringEncoding error:nil];

NSArray *locations = [csvString componentsSeparatedByCharactersInSet:[NSCharacterSet newlineCharacterSet]];

NSMutableArray *secondArray = [NSMutableArray array];
for (NSString * location in locations)
{

NSArray *components = [location componentsSeparatedByString:@","];

double latitude   = [components[0] doubleValue];
double longitude  = [components[1] doubleValue];
NSString *station =  components[2];

NSDictionary *dict = @{@"kLatitude": @(latitude),
                       @"kLongitude": @(longitude),
                       @"kStation": station};

[secondArray addObject:dict];

}

//Comes Out

secondArray = (
    {
    kLatitude = "41.656467";
    kLongitude = "-81.277963";
    kStation = 27200;
},
    {
    kLatitude = "41.657118";
    kLongitude = "-81.276545";
    kStation = 27650;
},
    {
    kLatitude = "41.658493";
    kLongitude = "-81.27354200000001";
    kStation = 28632;
}...


//function

NSArray *orderedPlaces = [locationsArray sortedArrayUsingComparator:^(id a,id b) {

NSDictionary *dictA;
NSDictionary *dictB;
CLLocation *locA;
CLLocation *locB;

dictA = (NSDictionary *)a;
dictB = (NSDictionary *)b;
locA = [[CLLocation alloc] initWithLatitude:[[dictA objectForKey:kLatitude] doubleValue]longitude:[[dictA objectForKey:kLongitude] doubleValue]];
locB = [[CLLocation alloc]
        initWithLatitude:[[dictB objectForKey:kLatitude] doubleValue]
        longitude:[[dictB objectForKey:kLongitude] doubleValue]];

問題は、関数が配列値を認識しないことです。値を定義する方法と関係があると思います。具体的には、kLatitude と kLongitude の呼び出しです。

私の関数が firstArray 値のように secondArray 値を読み取らない理由を特定できますか? どうすれば修正できますか?よろしくお願いします。

4

2 に答える 2

2

辞書キーを定義しました:

#define kStation @"station"
#define kLatitude @"latitude"
#define kLongitude @"longitude"

試す:

NSDictionary *dict = @{kLatitude : @(latitude),
                       kLongitude: @(longitude),
                       kStation  : station};

最初の配列作成ではそれらを使用しますが、2 回目では使用しません。

于 2013-05-14T02:19:23.483 に答える