在我的应用程序中,当我开始滚动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(@“委托myUITableViewTouchesBegan”); 只有在我触摸桌子时才能工作。当我开始滚动时,它如何工作?
我尝试重写scrollViewDidScroll,但是编译器说MyUITableVIew可能对此字符串没有响应[super scrollViewDidScroll:scrollView];