Почему мой textField исчезает?
Я занимаюсь с iPhone4S практикой UITextField на iOS 7.1.2.
Интерфейс:
Интерфейс первой версии прост, который просто имеет кастом UITextField
названный MyUITextField
и UIButtom
объект, который используется для отмены операции поиска. Внутри textField, его leftView
свойство изначально установлено в UIButton
объект, фоновое изображение которого является увеличительным стеклом. Когда пользователи нажимают на textField, эта кнопка увеличительного стекла будет удалена, а свойство leftView также установит новый объект UIButton, фоновое изображение которого является перевернутым треугольником. Когда пользователи нажимают кнопку треугольника, приложение создает новый объект просмотра.
Основной код:
//In this version,the textField's original frame property is set to (10,40,250,30)
//and the main operations are like this:
- (void)viewDidLoad
{
[super viewDidLoad];
self.myTextField.delegate = self;
self.myTextField.leftViewMode = UITextFieldViewModeUnlessEditing;
self.myTextField.leftView = [self creCustomSearchBar];
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(keyBoardWillAppear:)
name:@"UIKeyboardWillShowNotification"
object:nil];
[self.cancleSearchButton addTarget:self
action:@selector(cancleSearch:)
forControlEvents:UIControlEventTouchUpInside];
}
/*when tapping in the textField,keyboard will appear*/
- (void)keyBoardWillAppear:(NSNotification *)notification
{
CGRect newLeftViewIndicatorRect = CGRectMake(20,5,20,20);
UIButton *newLeftViewIndicator = [[UIButton alloc] initWithFrame:newLeftViewIndicatorRect];
NSString *imagePath = [[NSBundle mainBundle] pathForResource:@"searchbar_textfield_down_icon@2x" ofType:@"png"];
[newLeftViewIndicator setBackgroundImage:[UIImage imageWithContentsOfFile:imagePath] forState:UIControlStateNormal];
[newLeftViewIndicator addTarget:self action:@selector(createActuralLeftView:) forControlEvents:UIControlEventTouchUpInside];
self.myTextField.leftView = newLeftViewIndicator;
/*in the second verson need to call */
//[self adjustViewFrame];
[self.cancleSearchButton setTitle:@"取消" forState:UIControlStateNormal];
}
- (void)createActuralLeftView:(UIButton *)leftViewButton
{
UITapGestureRecognizer *tapGesture = [[UITapGestureRecognizer alloc] initWithTarget:self
action:@selector(tapRegionAboveKeyboard:)];
[self.view addGestureRecognizer:tapGesture];
NewLeftView *leftView = [[NewLeftView alloc] initWithFrame:CGRectMake(10, 80, 140, 100)];
leftView.delegate = self;
[self.view addSubview:leftView];
}
- (void)tapRegionAboveKeyboard:(UITapGestureRecognizer *)tapGesture
{
for (UIView *v in self.view.subviews) {
if ([v isKindOfClass:[NewLeftView class]]) {
[v removeFromSuperview];
[self.view removeGestureRecognizer:tapGesture];
return;
}
}
}
//in the second version need to call
- (void)adjustViewFrame
{
[[self.myTextField class] animateWithDuration:0.05 animations:^{
[self.myTextField setFrame:CGRectMake(self.myTextField.frame.origin.x, 40, self.myTextField.frame.size.width, self.myTextField.frame.size.height)];
}];
[[self.cancleSearchButton class] animateWithDuration:0.05 animations:^{
[self.cancleSearchButton setFrame:CGRectMake(self.cancleSearchButton.frame.origin.x, 40, self.cancleSearchButton.frame.size.width, self.cancleSearchButton.bounds.size.height)];
}];
}
В первой версии все работает хорошо.
Но во второй версии я установил свойство фрейма textField в (10,260,250,30), поэтому мне нужно вызвать adjustViewFrame
метод в keyBoardWillAppear:
изменить положение textField в случае затенения клавиатурой.
Возникает проблема: позиция textField правильно перемещается в нужное место, но когда я нажимаю кнопку перевернутого треугольника, textField исчезает.
Я не могу понять, что здесь происходит.