Benim app UITableView kaydırma başladığımda klavyeyi gizlemek istiyorum. Bu konuda internette arama yapıyorum ve çoğu cevap UITableView alt sınıflaması (http://stackoverflow.com/questions/3499810/tapping-a-uiscrollview-to-hide-the-keyboard).
Alt sınıf yaptım ama işe yaramıyor.
#import <UIKit/UIKit.h>
@protocol MyUITableViewDelegate <NSObject>
@optional
- (void)myUITableViewTouchesBegan;
@end
@interface MyUITableView : UITableView <UITableViewDelegate, UIScrollViewDelegate> {
id<MyUITableViewDelegate> delegate;
}
@end
.m dosyası
#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 {
...
Bu sınıfı böyle kullanıyorum. Ancak, temsilci işlevi myUITableViewTouchesBegan ViewController'da çalışmıyor
.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];
}
Bu uygulama ile bazı sorunları var:
1) myUITableViewTouchesBegan dont çalışma ViewController
2) NSLog MyUITableView.m - NSLog (@ "delegate myUITableViewTouchesBegan"); sadece masaya dokunduğumda çalışıyorum. Kaydırmaya başladığımda da nasıl işledi?
Ben geçersiz kılmak scrollViewDidScroll deneyin ama derleyici MyUITableVIew bu dizede yanıt vermeyeceğini söyledi [süper scrollViewDidScroll: scrollView];