diff options
author | matt handler <matt.handler@gmail.com> | 2011-04-30 09:25:32 -0400 |
---|---|---|
committer | matt handler <matt.handler@gmail.com> | 2011-04-30 09:25:32 -0400 |
commit | e993e7ba4e1107a875afeec33292b9d01c52035b (patch) | |
tree | 059ff9c8032b1a6a0dc18781e8eb388f9a8ea58f /Classes/BrowseViewController.m | |
parent | 869398ebfb18702b9de42f723ff8072b116eb04f (diff) | |
download | piccast-app-e993e7ba4e1107a875afeec33292b9d01c52035b.tar.gz piccast-app-e993e7ba4e1107a875afeec33292b9d01c52035b.zip |
added loading animation, piccast color title, navigation controllers for browse and search, uicolor orange and yellow, custom headers for search view, redid loading screen, fixed backgroundGradient, background white for topic table, etc etc etc gayHEADmaster
Diffstat (limited to 'Classes/BrowseViewController.m')
-rw-r--r-- | Classes/BrowseViewController.m | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Classes/BrowseViewController.m b/Classes/BrowseViewController.m index 22742c7..ca39545 100644 --- a/Classes/BrowseViewController.m +++ b/Classes/BrowseViewController.m @@ -21,6 +21,14 @@ - (void)viewDidLoad { [super viewDidLoad]; + [self.navigationController.navigationBar drawLogo]; + + UIView *backgroundView = [[UIView alloc] initWithFrame:self.view.frame]; + backgroundView.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"backgroundGradient.png"]]; + + self.tableView.backgroundView = backgroundView; + self.tableView.backgroundColor = [UIColor clearColor]; + // Uncomment the following line to display an Edit button in the navigation bar for this view controller. // self.navigationItem.rightBarButtonItem = self.editButtonItem; |