I am useing the swreveal to do the slide menu which i want to add search bar in it. However, the search bar has been covered by the parent view.
slide_areaWidth = self.revealViewController().rightViewRevealWidth
searchBar = UISearchBar(frame: CGRectMake(300, 0, 60, 64))
var searchDisplayController: UISearchDisplayController = UISearchDisplayController()
searchDisplayController = UISearchDisplayController(searchBar: searchBar, contentsController: self)
//searchDisplayController.delegate = self
searchDisplayController.searchResultsDataSource = self
self.tableView.tableHeaderView = searchBar
self.tableView.tableHeaderView!.frame = CGRectMake(300, 0, 60, 64);