For hiding navigation Bar : USe the following code :
if (floor(NSFoundationVersionNumber) > NSFoundationVersionNumber_iOS_6_1)
{
self.edgesForExtendedLayout=UIRectEdgeNone;
}
And in For hiding StatusBar set the following property to YES in plist :-
Status bar is initially hidden
- As the Table View display white cells because in iOS7.0 the cell background color is white by default so just set it clear colour :
Here is the Code :-
- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell
forRowAtIndexPath:(NSIndexPath *)indexPath {
[cell setBackgroundColor:[UIColor clearColor]]; }