I am creating a app.
But I have a problem.
That is textFieldShouldReturn is not called.
My app use TabBarController.
One of tabs, I use UIViewController. and use protocol UITextFieldDelegate.
That is this.
@interface TokutenViewController : UIViewController <UITextFieldDelegate>{
IBOutlet UITextField *name1;
}
Probrem is in TokutenViewController, textFieldShouldReturn is not called by system, if I push the Done button on SoftKeybord name1 textField.
Why is textFieldShouldReturn method not called ??
I wonder the relatonship bitween UITabBarController and UIViewController.
Thank you.
PS. This is my first post!!
