Re: Bindings Driving Me CRAZY. :'(

2009-10-13 Thread Gustavo Adolfo Pizano
Keary. Tahnks a lot for the info, I will spend more time them trying to solve this bindings problems,,, I see my problem is not just bindings, but some Obj-c related stuff, like references outlets between classes, I did something similar a while back (puting IBOutlets for other controllers ),

Re: Bindings Driving Me CRAZY. :'(

2009-10-13 Thread Gustavo Pizano
SuccesS :D:D:D Ok I have success, but I stepped away from what you told me,,, in a way. What I did was: In the AwakeFromNib method of the parent Controller, (the one that holds the UserListController and the InvoiceEditionController). -(void)awakeFromNib{

Bindings Driving Me CRAZY. :'(

2009-10-12 Thread Gustavo Pizano
Ok this is what I have: 1. InvoiceGenViewController.m - Controller for the InvoiceGenView.xib 2. UserListViewController.m - Controller for the UserListView.xib 3. InvoiceEditionViewController.m - Controller for the InvoiceEditionView.xib InvoiceGenView.xib, has a slipt view and

Re: Bindings Driving Me CRAZY. :'(

2009-10-12 Thread Keary Suska
On Oct 12, 2009, at 11:52 AM, Gustavo Pizano wrote: Ok this is what I have: 1. InvoiceGenViewController.m - Controller for the InvoiceGenView.xib 2. UserListViewController.m - Controller for the UserListView.xib 3. InvoiceEditionViewController.m - Controller for the InvoiceEditionView.xib

Re: Bindings Driving Me CRAZY. :'(

2009-10-12 Thread Gustavo Pizano
Keary Hello: This doesn't appear sensible, and you may have a number of problems. First, make sure that InvoiceEditionViewController is being instantiated this is what Im doing: in the awakeFromNib if(_userListController == nil){ _userListController = [[UserListViewController alloc]

Re: Bindings Driving Me CRAZY. :'(

2009-10-12 Thread Keary Suska
On Oct 12, 2009, at 1:33 PM, Gustavo Pizano wrote: Keary Hello: This doesn't appear sensible, and you may have a number of problems. First, make sure that InvoiceEditionViewController is being instantiated this is what Im doing: in the awakeFromNib if(_userListController == nil){