I fixed it, I had the bindings set up perfectly. My challenge was in my Project object my NSMutableArray was setup wrong:

@property (readwrite, assign) NSMutableArray *projectInfo;
should have been
@property (readwrite, copy) NSMutableArray *projectInfo;

with that change it works perfectly.

On Jul 18, 2008, at 11:24 PM, Jason Cox wrote:

I have 2 array controllers. the 1st manages an array of Project objects. within the project object there is an NSMutableArray of ProjectInfo objects.
Here is an image of my Interface Builder setup for the 2 controllers:

http://www.design-factor.com/jason/bindings.jpg

The Projects array controller works fine, but when i try to use the array controllers add: for the ProjectInfo controller, it gives me this in the console:
Cannot create NSArray from object NSCFString of class NSCFString

Im new to Cocoa / obj-c so please forgive the possible butchering of terminology. Im sure anyone out there can take a quick look at this and tell me exactly what I'm doing wrong.

Thanks so much,

Jason
_______________________________________________

Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)

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:
http://lists.apple.com/mailman/options/cocoa-dev/jason%40loopshot.com

This email sent to [EMAIL PROTECTED]


_______________________________________________

Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)

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:
http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com

This email sent to [EMAIL PROTECTED]

Reply via email to