I am added uitextfield into uitableviewcell using this code
textField=[[[UITextField alloc]initWithFrame:CGRectMake(5, 10, 290, 70)]autorelease]; textField.delegate=self; textField.keyboardType=UIKeyboardTypeURL; textField.autocorrectionType=YES; textField.textColor=[UIColor blackColor]; textField.placeholder=@"Enter feed url"; [cell.contentView addSubview:textField];
When i click the textField the keyboard will appear...But While i am editing text in the textField the magnifying class should not work
Can anyone help me?