• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
Re: Sorting through .plist in NSDictionary
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Sorting through .plist in NSDictionary


  • Subject: Re: Sorting through .plist in NSDictionary
  • From: Michael Ash <email@hidden>
  • Date: Thu, 26 Mar 2009 11:43:15 -0400

On Wed, Mar 25, 2009 at 11:49 PM, Jerry Krinock <email@hidden> wrote:
>
> On 2009 Mar 25, at 19:53, Pierce Freeman wrote:
>
>> I am attempting to sort through the contents of a .plist file in
>> NSDictionary, but am running into some problems.  Since .plist files are
>> kind of like a "tree", I can't just call objectForKey as there is no way
>> for
>> me to return the instance that I am looking for.  How would someone get a
>> certain key for each part of the tree?
>
> -valueForKeyPath:
>
> If your key path is in the form of an array, use this from my NSDictionary
> helpers...
>
> - (id)valueForKeyPathArray:(NSArray*)keyPathArray {
>    NSString* keyPath = [keyPathArray componentsJoinedByString:@"."] ;
>    return [self valueForKeyPath:keyPath] ;
> }

Note that this will fail hard if any of your keys have a . in them,
something that's perfectly legal. I would much prefer something like
this:

- (id)valueForKeyPathArray:(NSArray*)keyPathArray {
    id obj = self;
    for(id key in keyPathArray)
        obj = [obj objectForKey:key];
    return obj;
}

Mike
_______________________________________________

Cocoa-dev mailing list (email@hidden)

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:

This email sent to email@hidden

References: 
 >Sorting through .plist in NSDictionary (From: Pierce Freeman <email@hidden>)
 >Re: Sorting through .plist in NSDictionary (From: Jerry Krinock <email@hidden>)

  • Prev by Date: Re: Two view controllers in one set of files (Noob question)
  • Next by Date: Re: Reading one line at a time using NSFileHandle
  • Previous by thread: Re: Sorting through .plist in NSDictionary
  • Next by thread: Porting BASIC text mangling app to Objective-C
  • Index(es):
    • Date
    • Thread