私のアプリでは、UITableViewのスクロールを開始したときにキーボードを非表示にしたいと考えています。私はこれについてインターネットで検索し、ほとんどの答えはUITableViewをサブクラス化することです(http://stackoverflow.com/questions/3499810/tapping-a-uiscrollview-to-hide-the-keyboard)。
サブクラスを作成しましたが、機能しません。
#import <UIKit/UIKit.h>
@protocol MyUITableViewDelegate <NSObject>
@optional
- (void)myUITableViewTouchesBegan;
@end
@interface MyUITableView : UITableView <UITableViewDelegate, UIScrollViewDelegate> {
id<MyUITableViewDelegate> delegate;
}
@end
.mファイル
#import "MyUITableView.h"
@implementation MyUITableView
- (void)scrollViewDidScroll:(UIScrollView *)scrollView{
NSLog(@"delegate scrollView"); //this is dont'work
[super scrollViewDidScroll:scrollView];
}
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
NSLog(@"delegate myUITableViewTouchesBegan"); // work only here
[delegate myUITableViewTouchesBegan];
[super touchesBegan:touches withEvent:event];
}
- (void)dealloc {
...
私はこのクラスをこのように使用します。ただし、デリゲート関数myUITableViewTouchesBeganはViewControllerでは機能しません
.h
#import <UIKit/UIKit.h>
#import "MyUITableView.h"
@interface FirstViewController : UIViewController <UITableViewDelegate, UISearchBarDelegate, MyUITableViewDelegate> {
MyUITableView *myTableView;
UISearchBar *searchBar;
}
@property(nonatomic,retain) IBOutlet MyUITableView *myTableView;
...
.m
- (void) myUITableViewTouchesBegan{
NSLog(@"myUITableViewTouchesBegan");
[searchBar resignFirstResponder];
}
この実装に問題があります:
1)myUITableViewTouchesBeganがViewControllerで機能しない
2)MyUITableView.mからのNSLog- NSLog(@ "delegate myUITableViewTouchesBegan"); テーブルにタッチしたときのみ機能します。スクロールを開始したときもどのように機能しますか?
私はscrollViewDidScrollをオーバーライドしようとしましたが、コンパイラーはMyUITableVIewがこの文字列に応答しない可能性があると言いました[super scrollViewDidScroll:scrollView];