내 응용 프로그램에서 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;
...
.미디엄
- (void) myUITableViewTouchesBegan{
NSLog(@"myUITableViewTouchesBegan");
[searchBar resignFirstResponder];
}
이 구현에 문제가 있습니다.
1) myUITableViewTouchesBegan이 ViewController에서 작동하지 않습니다 . 2) MyUITableView.m의
NSLog- NSLog (@ "delegate myUITableViewTouchesBegan"); 내가 테이블을 만질 때만 작동합니다. 스크롤을 시작할 때 어떻게 작동합니까?
scrollViewDidScroll을 재정의하려고 시도했지만 컴파일러는 MyUITableVIew가이 문자열에 응답하지 않을 수 있다고 말했습니다. [super scrollViewDidScroll : scrollView];