Quote:
Originally Posted by harrytheshark
Right, but what have you tried so far? Post any code you're using.
|
////////////////this is my .h file and her i am not taking any button for search . will you help you?/////////////////////////////
@interface ExhibitorsViewController : UIViewController <UITableViewDelegate,UITableViewDataSource,UISearc hDisplayDelegate,UISearchBarDelegate>
{
UITableView *tableView4;
NSArray *listContent; // The master content.
NSMutableArray *filteredListContent; // The content filtered as a result of a search.
// The saved state of the search UI if a memory warning removed the view.
NSString *savedSearchTerm;
NSInteger savedScopeButtonIndex;
BOOL searchWasActive;
}
@property (nonatomic, retain) NSArray *listContent;
@property (nonatomic, retain) NSMutableArray *filteredListContent;
@property (nonatomic, copy) NSString *savedSearchTerm;
@property (nonatomic) NSInteger savedScopeButtonIndex;
@property (nonatomic) BOOL searchWasActive;
@property(nonatomic,retain) IBOutlet UITableView *tableView4;
@end
/////////////////////////this is my .m file//////////////////////////////