iOS 7.1.2 の UITextField について、iPhone4S でいくつかの練習を行います。
インターフェース:
最初のバージョンのインターフェイスはシンプルで、カスタムの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)];
}];
}
最初のバージョンでは問題なく動作します。
しかし、2 番目のバージョンでは、textField フレーム プロパティを (10,260,250,30) に設定したため、 のadjustViewFrame
メソッドを呼び出してkeyBoardWillAppear:
、キーボードで隠れる場合に備えて textField の位置を変更する必要があります。
ここで問題が発生します。textField の位置は正しく正しい場所に移動されますが、逆三角形のボタンをタップすると、textField が消えてしまいます。
ここで何が問題なのかわかりません。