in full width even the view return in inputView are not full width Work around ... •Add the keyboard view manually when the UITextField is begin to edit •Cannot be done by extend the UITextField, need to implement in UITextFieldDelegate •Disable the current keyboard • - (BOOL)textFieldShouldBeginEditing:(UITextField *)textField { return NO; } - (UIView *)inputView { return [[[UIView alloc] init] autorelease]; } Instead of Tuesday, 1 November, 11
(id<UITableViewDelegate>)createDelegate { return [[[IQueueTableViewDelegate alloc] initWithController:self] autorelease]; } Finally •You can pass the custom object between TTTableViewController easily by putting the object into table item Tuesday, 1 November, 11