-(void)loadView
{
UIView *contentView = [[UIView alloc] initWithFrame:[UIScreen mainScreen].applicationFrame];
self.view = contentView;
[contentView release];
UITableView *tableView = [ [ UITableView alloc] initWithFrame:self.view.frame style:UITableViewStyleGrouped ];
self.tableView = tableView;
[tableView release];
self.title = _(P_FIREWALL);
self.tableView.delegate = self;
self.tableView.dataSource = self;
}
CGRect appFrame = [[UIScreen mainScreen] applicationFrame];
appFrame = CGRectMake(0.0f, 0.0f, CGRectGetMaxX(appFrame), CGRectGetMaxY(appFrame));