En mi aplicación, quiero ocultar el teclado cuando empiezo a desplazar UITableView. Busco sobre esto en Internet, y la mayoría de las respuestas son subclases UITableView (http://stackoverflow.com/questions/3499810/tapping-a-uiscrollview-to-hide-the-keyboard).
Hice una subclase pero no funciona.
#import <UIKit/UIKit.h>
@protocol MyUITableViewDelegate <NSObject>
@optional
- (void)myUITableViewTouchesBegan;
@end
@interface MyUITableView : UITableView <UITableViewDelegate, UIScrollViewDelegate> {
id<MyUITableViewDelegate> delegate;
}
@end
archivo .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 {
...
Yo uso esta clase como esta. Pero la función delegar myUITableViewTouchesBegan no funciona en 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;
...
.metro
- (void) myUITableViewTouchesBegan{
NSLog(@"myUITableViewTouchesBegan");
[searchBar resignFirstResponder];
}
Tengo algunos problemas con esta implementación:
1) myUITableViewTouchesBegan no funciona en ViewController
2) NSLog de MyUITableView.m - NSLog (@ "delegar myUITableViewTouchesBegan"); funciona solo cuando toco la mesa. ¿Cómo funciona también cuando empiezo a desplazarme?
Intento anular scrollViewDidScroll pero el comiler dijo que MyUITableVIew puede no responder en esta cadena [super scrollViewDidScroll: scrollView];