Andrew Paul Simmons
Andrew Paul Simmons

Reputation: 4523

In Core Data, what is the URI property type on the NSManaged object supposed to be used for?

enter image description here

  1. Why would you need the URI type?
  2. What is the equivalent Swift object type for a URI property?
  3. Would I store a URL in this property?
  4. I'm doubtful that I would ever want to store the URI for another managed object in this way, but is it related?

Also, a link to any Apple docs that describe the usage would be helpful.

Upvotes: 26

Views: 10059

Answers (2)

Milan
Milan

Reputation: 41

You can use URI to store URL of image, audio, video or any other resource. In case, you store images on the device in files, you can use URL of the file path.

Upvotes: 3

Tom Harrington
Tom Harrington

Reputation: 70966

In the WWDC 2017 "What's New in Core Data" session, one of the slides indicates:

New Attribute Types

Why would you need the URI type?

To store a URL.

What is the equivalent Swift object type for a URI property?

The Swift equivalent of NSURL is URL.

Would I store a URL in this property?

That is the purpose of the type.

I'm doubtful that I would ever want to store the URI for another managed object in this way, but is it related?

Possible, but probably not a good idea. A relationship would be better. Still, there might be cases where it makes sense to do this.

Upvotes: 40

Related Questions