I found out that in beta 4, UITableViewCell have separator by default, which I didn't find it on beta 2 ( I used beta 2 before beta 4 ). And I want to remove/hide this separator. The reason is; the table view looks better without separator. It seems simple, but I can't find a way to remove it. Anybody can help me with this ?
Note: I use plain UITableView, and had set separator option to 'None'
I assume you did set that property in the Interface Builder? I filed that as a bug (21939917) and it was already marked as duplicate (21827485), so it is a known issue.
As workaround, you can set the separatorStyle to UITableViewCellSeparatorStyleNone in the code, that works for us.