• 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: readonly property which is a mutable array
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: readonly property which is a mutable array


  • Subject: Re: readonly property which is a mutable array
  • From: Keary Suska <email@hidden>
  • Date: Thu, 18 Nov 2010 08:33:56 -0700

On Nov 18, 2010, at 5:35 AM, Remco Poelstra wrote:

> Hi,
>
> I've a object like to following:
> @interface <Proto> {
> 	NSMutableArray *items;
> }
> @property (nonatomic,readonly) NSMutableArray *items;
> @end
>
> I also have a protocol as follows:
> @protocol Proto
> @property (nonatomic,readonly) NSArray *items;
> @end
>
> I of course want the items to be read only for the outside world, but the object itself should be able to modify it. Now the compiler complains about the properties not matching. How should I solve this? Make a custom getter that returns an immutable array? Make the property refer to a mutable array? Make the property an immutable array and make copies of the array while modifying it?

The ivar type and the property type don't have to match. In fact, there does not need to be any ivar backing whatsoever to properties.

Change your property declaration to NSArray *, and implement the getter with [[array copy] autorelease] or similar.

You don't have much choice if you want a public immutable, but private mutable.

Keary Suska
Esoteritech, Inc.
"Demystifying technology for your home or business"

_______________________________________________

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

  • Follow-Ups:
    • Re: readonly property which is a mutable array
      • From: Ken Thomases <email@hidden>
References: 
 >readonly property which is a mutable array (From: Remco Poelstra <email@hidden>)

  • Prev by Date: Re: Variable declaration in "for" loop initialization expression?
  • Next by Date: Re: NSBrowser
  • Previous by thread: Re: readonly property which is a mutable array
  • Next by thread: Re: readonly property which is a mutable array
  • Index(es):
    • Date
    • Thread