From 901729c7eefcc10f27f306fff6170e80fa653ebe Mon Sep 17 00:00:00 2001 From: matt handler Date: Thu, 21 Apr 2011 19:54:47 -0400 Subject: lots of display images, titlebars are badass, defaultstyle changing the button though --- Classes/PhotoViewController.m | 4 ++-- Classes/TopicsViewController.h | 3 ++- Classes/TopicsViewController.m | 23 +++++++++++++---------- 3 files changed, 17 insertions(+), 13 deletions(-) (limited to 'Classes') diff --git a/Classes/PhotoViewController.m b/Classes/PhotoViewController.m index fb8931b..5a34670 100644 --- a/Classes/PhotoViewController.m +++ b/Classes/PhotoViewController.m @@ -23,8 +23,8 @@ } - (void)viewWillDisappear:(BOOL)animated { - //self.navigationController.navigationBar.barStyle = UIBarStyleDefault; - self.navigationController.navigationBar.tintColor = [UIColor colorWithRed:24/255.0 green:45/255.0 blue:64/255.0 alpha:1.0]; + self.navigationController.navigationBar.barStyle = UIBarStyleDefault; + //self.navigationController.navigationBar.tintColor = [UIColor colorWithRed:24/255.0 green:45/255.0 blue:64/255.0 alpha:1.0]; } - (void)setPhotoList:(NSArray *)list { diff --git a/Classes/TopicsViewController.h b/Classes/TopicsViewController.h index 631a5d0..fac4e7d 100644 --- a/Classes/TopicsViewController.h +++ b/Classes/TopicsViewController.h @@ -13,7 +13,7 @@ #import "SourcesEditViewController.h" #import "PhotoViewController.h" -@interface TopicsViewController : UITableViewController { +@interface TopicsViewController : UIViewController { UINavigationController *topicsNavigationController; NSMutableArray *topics; // PicDumpViewController *picDumpViewController; @@ -24,6 +24,7 @@ - (IBAction)showSources:(id)sender; +@property (nonatomic, retain) IBOutlet UITableView *tableView; @property (nonatomic, retain, readonly) UINavigationController *topicsNavigationController; @property (nonatomic, retain) PhotoViewController *photoViewController; @property (nonatomic, retain) NSMutableArray *topics; diff --git a/Classes/TopicsViewController.m b/Classes/TopicsViewController.m index 9969962..aa9ab85 100644 --- a/Classes/TopicsViewController.m +++ b/Classes/TopicsViewController.m @@ -20,19 +20,22 @@ @implementation UINavigationBar (CustomImage) - (void)drawRect:(CGRect)rect { -// NSLog(@"titlebar"); -// if (self.barStyle == UIBarStyleDefault) { + //NSLog(@"titlebar: %@", self.barStyle); + if (self.barStyle == UIBarStyleDefault) { UIImage *image = [UIImage imageNamed: @"titleBarBackground.png"]; [image drawInRect:CGRectMake(0, 0, self.frame.size.width, self.frame.size.height)]; -// } -// else + } + else { + UIImage *image = [UIImage imageNamed: @"titleBarBackgroundBlack.png"]; + [image drawInRect:CGRectMake(0, 0, self.frame.size.width, self.frame.size.height)]; + } //[super drawRect:rect]; } @end @implementation TopicsViewController -@synthesize topics, parser; +@synthesize topics, parser, tableView; - (void)viewDidLoad { [super viewDidLoad]; @@ -81,6 +84,11 @@ // return picDumpViewController; //} +- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section { + // Return the number of rows in the section. + return [topics count]; +} + - (void) sourcesEditViewControllerDidFinish:(SourcesEditViewController *)controller { [self dismissModalViewControllerAnimated:YES]; @@ -136,11 +144,6 @@ [parser start]; } - -- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section { - return [topics count]; -} - //- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath //{ // return 100; -- cgit v1.2.3