0

それらを直接入れることができないことはわかっていますが、NSNumberたとえば、に変換する必要があります。それらをNSNumbers に変換してから、辞書に入れています。入力しているキーをすぐにログに記録すると、それらは空白です。

次に例を示します。

- (NSDictionary*) dictionaryFromWrestler
{
    /* 
     * Used ot create a dictionary from the instance of the wrestler
     * Can be used to send and receive wrestlers through notification center
     */
    NSDictionary* dictionary;

    NSNumber* _score = [NSNumber numberWithInt:score];


    dictionary = [NSDictionary dictionaryWithObjectsAndKeys:firstName, @"firstName", lastName, @"lastName", fullName, @"fullName", shortName, @"shortName", team, @"team", seed, @"seed", actualWeight, @"actualWeight", dob, @"dob", club, @"club", hometown, @"hometown", state, @"state", grade, @"grade", extraField, @"extraField",  phone, @"phone", address, @"address", zip, @"zip", record, @"record", gradeAbbr, @"gradeAbbr", twid, @"twid", teamId, @"teamId", position, @"position", _score, @"score", [NSNumber numberWithInt:teamScore], @"teamScore", [NSNumber numberWithInt:period1Score], @"period1Score", [NSNumber numberWithInt:period2Score], "@period2Score", [NSNumber numberWithInt:periods], @"periods", [NSNumber numberWithBool:hasRidingTime], @"hasRidingTime", nil];

NSLog(@"dictionaryFromWrestler Score: %@", lastName);
NSLog(@"dictionaryFromWrestler Score: %i", score);
NSLog(@"dictionaryFromWrestler Score: %@", _score);
NSLog(@"dictionaryFromWrestler Score: %d", [[dictionary objectForKey:@"score"] intValue]);
NSLog(@"dictionaryFromWrestler Score: %@", [dictionary valueForKey:@"score"]);
NSLog(@"dictionaryFromWrestler Score: %@", [dictionary valueForKey:@"lastName"]);

    return dictionary;
}

私のログは次のようになります。

2012-05-18 17:46:53.117 Wrestling Tools[31509:403] dictionaryFromWrestler Score: Brown
2012-05-18 17:46:53.117 Wrestling Tools[31509:403] dictionaryFromWrestler Score: 2
2012-05-18 17:46:53.117 Wrestling Tools[31509:403] dictionaryFromWrestler Score: 2
2012-05-18 17:46:53.117 Wrestling Tools[31509:403] dictionaryFromWrestler Score: (null)
2012-05-18 17:46:53.117 Wrestling Tools[31509:403] dictionaryFromWrestler Score: (null)
2012-05-18 17:46:53.117 Wrestling Tools[31509:403] dictionaryFromWrestler Score: Brown

ご覧のとおり、プリミティブは失敗しますが、オブジェクトは機能します。一体何?

4

2 に答える 2

4

「%@」はオブジェクトの書式指定子ですが、数値の intValue を取得しています。NSLog(@"dictionaryFromWrestler Score: %d", [[dictionary objectForKey:@"score"] intValue])またはのいずれかが必要NSLog(@"dictionaryFromWrestler Score: %@", [dictionary objectForKey:@"score"])です。

于 2012-05-18T22:26:03.630 に答える
2

メソッドは、値-[NSDictionary dictionaryWithObjectsAndKeys:]にヒットすると、引数のリストの処理を停止しnilます。nilこれは、あなたが書いたリテラルを意味するだけではありません。これは、評価される任意の引数ですnil(もちろん、メソッドは違いを見分けることができないため)。

したがって、 の前の長いリストの値の 1 つは、リストを時期尚早に切り捨てていること_scoreは確かです。nilしたがって、辞書には実際にはキー「スコア」がありません。

于 2012-05-19T13:36:47.577 に答える