Customizing search bar in iPhone application Development

后端 未结 5 669
梦如初夏
梦如初夏 2021-02-06 17:34

In my application I have to add a search bar at the head of the tableview. I am able to add the searchbar but problem is without adding default search bar of ios can i add my cu

5条回答
  •  情深已故
    2021-02-06 17:56

    Look for Apple DOC for UISearchBar

    enter image description here

    You have bunch of methods there to get whatever you want

    You can get UITextView Inside the search bar by

    UITextField *textField = [searchBar.subviews objectAtIndex:2];
    
    if ([textField isKindOfClass:[UITextField class]]) {
        //Do your customization
    }
    

    Again look for AppleDoc for UITextField. You have bunch of methods for that also.

提交回复
热议问题