i have encountered a strange problem: it is known that UITableView solves automatically the issue of the keyboard hides a text field. it has worked for me just fine until i extended UITableViewController to add it more functionality. to be precise - i did not inherit from UITableViewController, but extended it by creating a class UITableViewController (property). The extended properties was not by any means connected to keyboard/text field issues - but the described-above functionality was damaged after this extension and now the keyboard hides my text fields.
does anybody have an explanation for this? Moreover, if someone who has experience in extending classes can tip about sensitive areas in this process, it would be swell.
Thanks, Elik
EDIT: this is more or less my extended class code and the methods implemented:
@implementation UITableViewController (Property)
-(void) viewDidLoad
{
/* perform custom code */
[super viewDidLoad];
}
-(void)commonloadProperty{
/* custom code */
}
-(void) viewDidUnload
{
/* custom code */
[super viewDidUnload];
}
-(void)viewWillAppear:(BOOL)animated
{
[super viewWillAppear:animated];
}
-(void)propertyHandlingStarted
{
/* custom code */
}
-(void)propertyHandlingCanceled
{
/* custom code */
}
-(void)propertyHandlingActionsClicked
{
/* custom code */
}