Hi there, I have the following problem: A UIView with a UIViewController, but I have another view, something like an customized keyboard, and this "keyboard" have another UIViewController associated. I'm adding this keyboard to the original UIView like that
CustomizedKeyboard *customized = [[CustomizedKeyboard alloc] initWithNibName:@"CustomizedKeyboard" bundle:[NSBundle mainBundle]];
[self.view addSubview: customized.view];
customized.view.frame = CGRectMake(0, 480, 320, 260);
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:0.5];
customized.view.frame = CGRectMake(0, 200, 320, 260);
[UIView commitAnimations];
[customized release];
When I call this method, the view appears with no problem in my view, but the problem is that this customized keyboard have some methods associated with the buttons, but when I touch any button I got
-[NSCFType buttonPressed]: unrecognized selector sent to instance 0x1065f80'
Anyone have an idea what it might be? I create this sample project with this problem for better comprehension http://www.2shared.com/file/6174665/9c9bbd44/ArchiveFixed.html (Download link) I'm really grateful for any help. thx