On Apr 15, 2012, at 3:46 PM, Markus Spoettl <ms_li...@shiftoption.com> wrote:

> On 4/15/12 8:06 PM, Scott Ribe wrote:
>> On Apr 15, 2012, at 12:01 PM, Markus Spoettl wrote:
>> 
>>> I have an NSDictionary that contains, well, objects. When I call 
>>> -objectForKey: I get nil for keys that are definitely in there.
>>> 
>>> The dictionary gets constructed like this:
>>> 
>>>  [NSDictionary dictionaryWithObjectsAndKeys:
>>>      kUnitsKey, [NSNumber numberWithDouble:units],
>>>      kValueKey, [NSNumber numberWithDouble:value],
>>>      kIsMetricKey, [NSNumber numberWithBool:isMetric],
>>>      nil];
>> 
>> You've switch the order of objects&  keys in the arguments.
> 
> OMG. Worst. mistake. ever. I'll be embarrassed for one week, I promise.


If you can use the Xcode 4.4 beta, then you can define away this mistake 
entirely:

NSDictionary *dict = @{
        kUnitsKey : [NSNumber numberWithDouble:units],
        kValueKey : [NSNumber numberWithDouble:value],
        kIsMetricKey : (isMetric ? @YES : @NO)
};

See this web page for more info:

        http://clang.llvm.org/docs/ObjectiveCLiterals.html


davez
_______________________________________________

Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
https://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com

Reply via email to