I just start using XCode and Objective C programmation and I hope you could answer me. I have an UIViewController with *.m and *.h files. It load an UIView with like that :
myView = [[[NSBundle mainBundle] loadNibNamed:@"MyView" owner:self options:nil] objectAtIndex: 0];
This UIView is created with Interface Builder. Within this, there is an UIButton. I would like get this UIButton
myButton = ???
And next assign function from TouchDown by example...
Thanks