• 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: Determining object type
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Determining object type


  • Subject: Re: Determining object type
  • From: Robert Walker <email@hidden>
  • Date: Wed, 12 Apr 2006 11:15:22 -0400

John,

If you're talking about Core Data then you can determine the attribute type by using the NSEntityDescription.

-----------------------------------------------------------
NSManagedObject myManagedObject; // assume this exists
NSAttributeDescription *attrDesc = [[[myManagedObject entity] attributesByName] valueForKey:@"myAttributeName"];
NSAttributeType attrType = [attrDesc attributeType];
-----------------------------------------------------------


See NSAttributeType for the constants used to designate the different types.

On Apr 12, 2006, at 9:21 AM, John Cebasek wrote:

Hi All:

I'm reading an XML file via:
data = [NSData dataWithContentsOfFile:path];
and
prop = (NSMutableArray *)CFPropertyListCreateFromXMLData(...);

If I call

temp = [prop objectForKey:key], I'd like to know what type of object is returned before I do anything with it.

isKindOfClass: for NSString works, but what about any other types. I know one of the values I need is a boolean, the data in the XML file is:

<key>ServerIsBound</key>
<true/>

but what do you use to test to make sure that it's a boolean? Or a data blob?

Any hints would be appreciated.

Thanks...


John Cebasek
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Cocoa-dev mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
40mac.com


This email sent to email@hidden

-- Robert Walker email@hidden



_______________________________________________
Do not post admin requests to the list. They will be ignored.
Cocoa-dev mailing list      (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden


References: 
 >Determining object type (From: "John Cebasek" <email@hidden>)

  • Prev by Date: Quicktime movie in loop mode between 2 points
  • Next by Date: Re: Sorting a table using multiple sort descriptors while using bindings...
  • Previous by thread: Re: Determining object type
  • Next by thread: Window resize indicator changes
  • Index(es):
    • Date
    • Thread