Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Actually my TableView's background color is really black. However when i use SearchBar and search words,if there is no data that match , there will appear "NO Result" UITableView with White Color. I don't want to appear that White color background with " NO Result " TableViewCell if there are no match words.. How can i remove that White UITableViewCell?

That No Result TableView is i want to remove if there are no result that match. enter image description here

share|improve this question
1  
Would be helpful to see your code so far... – SomaMan Apr 16 '12 at 17:58
1  
Take a look at those two related questions: stackoverflow.com/questions/3451945/… and stackoverflow.com/questions/1165224/… – Binyamin Sharet Apr 16 '12 at 18:32

1 Answer

That tableView comes automatic since it's part of the search, however you can modify by doing this:

  1. Create a boolean flag named noResultsToDisplay (or something else).
  2. If you have no results to display then set noResultsToDisplay = YES, set it to NO otherwise.
  3. In numberOfRowsInSection, if (noResultsToDisplay) return 3;
  4. In cellForRowAtIndexPath, if (noResultsToDisplay && indexPath.row == 2) cell.textLabel.text = @"No Results";
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.