I need hide a UITableViewCell. I set backgroundColor to clear, but cell still visible. Please see the screenshot.
cell.backgroundColor = [UIColor clearColor];

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Normally, you wouldn’t hide it this way. Rather, you should try not displaying it at all. In your table view controller’s numberOfRowsInSection method, try something like this:
(you can replace self.cellShouldBeVisible with your own code of course)
If you want to go from displaying to not displaying the cell, set self.cellShouldBeVisible to the desired BOOL value and call
[self.tableView reloadData];