When is NSCopying needed?

前端 未结 3 2075
Happy的楠姐
Happy的楠姐 2021-02-19 23:34

I know it\'s needed if your object will be used as a key in an NSDictionary. Are there any other times like this that NSCopying is required?

If I think I don\'t need my

3条回答
  •  [愿得一人]
    2021-02-20 00:02

    NSCopying has quite broad usage. Anytime an object owns something it shouldn't share with other objects, you'll need a copy. Mutable objects often need to be copied, though NSMutableCopying might be needed instead of NSCopying.

提交回复
热议问题