Search code examples
iosobjective-cuisearchbartabbarcontroller

How to add search bar in tabbar controller in ios?


I am working on a project in which i have to use search bar on tab bar controller on the top. i tried so many codes but not working i am sharing my code. please help me to overcome this problem.

UISearchBar *search = [[UISearchBar alloc] init];
    search.frame = CGRectMake(5 ,5, 300,45);
    search.delegate = self;
    search.showsBookmarkButton = NO;
    search.placeholder = @"Search/Select a Creative Service";
    search.barTintColor = [UIColor blackColor];

Solution

  • Set your search bar as the title view:

    self.navigationItem.titleView = search;