When I mark a property as transient, does the type matter?

Posted by mystify on Stack Overflow See other posts from Stack Overflow or by mystify
Published on 2010-06-06T16:46:43Z Indexed on 2010/06/06 16:52 UTC
Read the original article Hit count: 304

Filed under:
|

For example, I make a fullName property and set it to transient. Does it matter what data type that property is, in this case? For example, does it matter if it's set to int or string?

As far as I get it, a transient property is almost "ignored" by Core Data. I make my accessors for that and when someone accesses fullName, I simply construct a string and return that.

Did I miss something?

© Stack Overflow or respective owner

Related posts about iphone

Related posts about core-data