Di aplikasi saya, saya ingin menyembunyikan keyboard ketika saya mulai menggulir UITableView. Saya mencari tentang ini di internet, dan sebagian besar jawabannya adalah subclass UITableView (http://stackoverflow.com/questions/3499810/tapping-a-uiscrollview-to-hide-the-keyboard).
Saya membuat subclass tetapi tidak berhasil.
#import <UIKit/UIKit.h>
@protocol MyUITableViewDelegate <NSObject>
@optional
- (void)myUITableViewTouchesBegan;
@end
@interface MyUITableView : UITableView <UITableViewDelegate, UIScrollViewDelegate> {
id<MyUITableViewDelegate> delegate;
}
@end
file .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 {
...
Saya menggunakan kelas ini seperti ini. Tetapi fungsi delegasi myUITableViewTouchesBegan tidak berfungsi di 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];
}
Saya memiliki beberapa masalah dengan penerapan ini:
1) myUITableViewTouchesBegan tidak berfungsi di ViewController
2) NSLog dari MyUITableView.m - NSLog (@ "delegate myUITableViewTouchesBegan"); bekerja hanya ketika saya menyentuh meja. Bagaimana membuatnya bekerja juga saat saya mulai menggulir?
Saya mencoba menimpa scrollViewDidScroll tetapi comiler mengatakan bahwa MyUITableVIew mungkin tidak merespons pada string ini [super scrollViewDidScroll: scrollView];