Skip to content

Commit

Permalink
Basic look-and-feel changes
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronbrethorst committed May 15, 2011
1 parent 47275c4 commit 79dcf22
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 9 deletions.
9 changes: 1 addition & 8 deletions Classes/MenuViewController.m
Expand Up @@ -28,14 +28,7 @@ - (id)initWithFrame:(CGRect)frame {
[_tableView setDataSource:self];
[_tableView setBackgroundColor:[UIColor clearColor]];
_tableView.tableFooterView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, self.view.frame.size.width, 1)];
[self.view addSubview:_tableView];

UIView* verticalLineView = [[UIView alloc] initWithFrame:CGRectMake(self.view.frame.size.width, -5, 1, self.view.frame.size.height)];
[verticalLineView setAutoresizingMask:UIViewAutoresizingFlexibleHeight];
[verticalLineView setBackgroundColor:[UIColor whiteColor]];
[self.view addSubview:verticalLineView];
[self.view bringSubviewToFront:verticalLineView];

[self.view addSubview:_tableView];
}
return self;
}
Expand Down
2 changes: 1 addition & 1 deletion Classes/RootViewController.m
Expand Up @@ -96,7 +96,7 @@ - (void)viewDidLoad {

[rootView addSubview:leftMenuView];
[rootView addSubview:rightSlideView];
[self.view setBackgroundColor:[UIColor colorWithPatternImage: [UIImage imageNamed:@"backgroundImage_repeat.png"]]];
self.view.backgroundColor = [UIColor scrollViewTexturedBackgroundColor];
[self.view addSubview:rootView];
}

Expand Down

0 comments on commit 79dcf22

Please sign in to comment.