UISearchBar not responding to delegate methods
Is there any way to get this working through interface builder or will I have to resort to hard coding the entire layout?
Macbook Pro, Mac OS X (10.5.4)
Macbook Pro, Mac OS X (10.5.4)
- (BOOL)respondsToSelector:(SEL)sel {
NSLog(@"Queried about %@", NSStringFromSelector(sel));
return [super respondsToSelector:sel];
}
@interface MyViewController : UIViewController <UISearchBarDelegate> {
...
IBOutlet UISearchBar * searchBar;
...
}
...
searchBar.delegate = self;
UISearchBar not responding to delegate methods