문제

I'm from a Flash ActionScript background. Where I'm from, I can set a dictionary-like object like this:

var data:Object = {startPoint:5, endPoint:12};

So coming to Objective-C, I was surprised to discover that the equivalent to this appears to be:

NSMutableDictionary *data = [NSMutableDictionary dictionary];
[data setObject:[NSNumber numberWithInt:5] forKey:@"startPoint"];
[data setObject:[NSNumber numberWithInt:12] forKey:@"endPoint"];

Surely there's an easier way... Or is that really my lot?

도움이 되었습니까?

해결책

This is the only shorter way I can think of:

NSMutableDictionary *petalData = [NSMutableDictionary dictionaryWithObjectsAndKeys:[NSNumber numberWithInt:5], @"startPoint", [NSNumber numberWithInt:12], @"endPoint", nil];
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top