我使用此代码将uitextfield添加到uitableviewcell
textField = [[[UITextField alloc] initWithFrame:CGRectMake(5,10,290,70)] autorelease]; textField.delegate =自我; textField.keyboardType = UIKeyboardTypeURL; textField.autocorrectionType = YES; textField.textColor = [UIColor blackColor]; textField.placeholder = @“输入Feed url”; [cell.contentView addSubview:textField];
当我点击textField时,键盘会出现...但是当我在textField中编辑文本时,放大类不应该起作用
任何人都可以帮助我吗?
答案 0 :(得分:0)