Anyone a clue for this problem?
http://livescreaming.igang.net/data/misc/UItextfieldBug.png
thats how i create it
//create the textfield
CGRect frameTxt = CGRectMake(10, 12, 280, 30);
txtFavouriteName = [[UITextField alloc] initWithFrame:frameTxt];
txtFavouriteName.clearButtonMode = UITextFieldViewModeWhileEditing;
txtFavouriteName.textColor = [UIColor blueColor];
txtFavouriteName.backgroundColor = [UIColor clearColor];
and thats how i add it to the proper tableview cell
[cell.contentView addSubview:self.txtFavouriteName];
i want to align this cancel button vertical middle
second question is maybe a simpler one. how can i change the textcolor of the header text from this boring grey to whit?
Anyone a solution?
cheers