Re: Binding to an NSMutableArray

2011-02-16 Thread Lorenzo Thurman
On Wed, Feb 16, 2011 at 12:23 AM, Stephen J. Butler stephen.but...@gmail.com wrote: On Wed, Feb 16, 2011 at 12:05 AM, Stephen J. Butler stephen.but...@gmail.com wrote: It works, I just wrote up an example. But unfortunately my universities file storage is crapping out and I can't share it

Binding to an NSMutableArray

2011-02-15 Thread Lorenzo Thurman
I have an object, Student, that contains firstName and lastName as instance variables. Student also contains an NSMutableArray of infraction objects that contains NSString's for the infraction name, location, punishment and an NSDate. I want to bind these infraction objects to the columns of an

Re: Binding to an NSMutableArray

2011-02-15 Thread Stephen J. Butler
On Tue, Feb 15, 2011 at 10:37 PM, Lorenzo Thurman lorenzo7...@gmail.com wrote: I have an object, Student, that contains firstName and lastName as instance variables. Student also contains an NSMutableArray of infraction objects that contains NSString's for the infraction name, location,

Re: Binding to an NSMutableArray

2011-02-15 Thread Lorenzo Thurman
On Feb 15, 2011, at 10:42 PM, Stephen J. Butler stephen.but...@gmail.com wrote: On Tue, Feb 15, 2011 at 10:37 PM, Lorenzo Thurman lorenzo7...@gmail.com wrote: I have an object, Student, that contains firstName and lastName as instance variables. Student also contains an NSMutableArray

Re: Binding to an NSMutableArray

2011-02-15 Thread Stephen J. Butler
On Tue, Feb 15, 2011 at 11:08 PM, Lorenzo Thurman lorenzo7...@gmail.com wrote: I should add that there are 2 tables side by side in the app. On the left, 3 columns, fname, lname bound directly to Student object as controller.fname/lname and the count of infractions in the third column using

Re: Binding to an NSMutableArray

2011-02-15 Thread Stephen J. Butler
On Wed, Feb 16, 2011 at 12:05 AM, Stephen J. Butler stephen.but...@gmail.com wrote: It works, I just wrote up an example. But unfortunately my universities file storage is crapping out and I can't share it at the moment. Ahh ha, figured it out. Here's my example: