From f2a2e1c1687ac7dbb9010b5f826486f77baeae77 Mon Sep 17 00:00:00 2001 From: matt handler Date: Wed, 20 Apr 2011 21:48:14 -0400 Subject: icons, rename, title bar color change, tabbarviewcontroller links to shib for topicsviewcontroller instead of a rando --- Classes/PhotoViewController.m | 3 +- Classes/PicCast.png | Bin 29647 -> 60435 bytes Classes/PicCastAppDelegate.m | 1 - Classes/PicDumpViewController.h | 22 - Classes/PicDumpViewController.m | 273 ---------- Classes/TopicsViewController.h | 6 +- Classes/TopicsViewController.m | 45 +- Images/PicCastTabBarIcons.category.30.png | Bin 0 -> 408 bytes Images/PicCastTabBarIcons.category.30@2x.png | Bin 0 -> 744 bytes Images/PicCastTabBarIcons.fave.30.png | Bin 0 -> 370 bytes Images/PicCastTabBarIcons.fave.30@2x.png | Bin 0 -> 539 bytes Images/PicCastTabBarIcons.feeds.30.png | Bin 0 -> 2024 bytes Images/PicCastTabBarIcons.feeds.30@2x.png | Bin 0 -> 1269 bytes MainWindow.xib | 179 +++++-- PicCast.xcodeproj/handler.mode1v3 | 59 ++- PicCast.xcodeproj/handler.pbxuser | 731 +++++++++++++++++++++++++-- PicCast.xcodeproj/project.pbxproj | 50 +- TopicsView.xib | 70 +-- 18 files changed, 906 insertions(+), 533 deletions(-) delete mode 100644 Classes/PicDumpViewController.h delete mode 100644 Classes/PicDumpViewController.m create mode 100644 Images/PicCastTabBarIcons.category.30.png create mode 100644 Images/PicCastTabBarIcons.category.30@2x.png create mode 100644 Images/PicCastTabBarIcons.fave.30.png create mode 100644 Images/PicCastTabBarIcons.fave.30@2x.png create mode 100644 Images/PicCastTabBarIcons.feeds.30.png create mode 100644 Images/PicCastTabBarIcons.feeds.30@2x.png diff --git a/Classes/PhotoViewController.m b/Classes/PhotoViewController.m index 5999626..fb8931b 100644 --- a/Classes/PhotoViewController.m +++ b/Classes/PhotoViewController.m @@ -23,7 +23,8 @@ } - (void)viewWillDisappear:(BOOL)animated { - self.navigationController.navigationBar.barStyle = UIBarStyleDefault; + //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/PicCast.png b/Classes/PicCast.png index 4c6ba76..4b028fd 100644 Binary files a/Classes/PicCast.png and b/Classes/PicCast.png differ diff --git a/Classes/PicCastAppDelegate.m b/Classes/PicCastAppDelegate.m index 0bd0798..3091f4a 100644 --- a/Classes/PicCastAppDelegate.m +++ b/Classes/PicCastAppDelegate.m @@ -8,7 +8,6 @@ #import "PicCastAppDelegate.h" #import -#import @implementation PicCastAppDelegate diff --git a/Classes/PicDumpViewController.h b/Classes/PicDumpViewController.h deleted file mode 100644 index 4716538..0000000 --- a/Classes/PicDumpViewController.h +++ /dev/null @@ -1,22 +0,0 @@ -// -// PicDumpViewController.h -// acidcow -// -// Created by Matthew Handler on 4/16/11. -// Copyright 2011 Earl Industries. All rights reserved. -// - -#import -#import "Topic.h" -//@class Topic; - -@interface PicDumpViewController : UIViewController { - NSMutableData *_acidcowPage; - NSDateFormatter *dateFormatter; - Topic *topic; -} - -@property (nonatomic, retain) Topic *topic; -@property (nonatomic, readonly, retain) NSDateFormatter *dateFormatter; - -@end diff --git a/Classes/PicDumpViewController.m b/Classes/PicDumpViewController.m deleted file mode 100644 index 436534e..0000000 --- a/Classes/PicDumpViewController.m +++ /dev/null @@ -1,273 +0,0 @@ -// -// PicDumpViewController.m -// acidcow -// -// Created by Matthew Handler on 4/16/11. -// Copyright 2011 Earl Industries. All rights reserved. -// - -#import "PicDumpViewController.h" -#import "PhotoViewController.h" - -@implementation PicDumpViewController - -@synthesize topic, dateFormatter; - -- (NSDateFormatter *)dateFormatter { - if (dateFormatter == nil) { - dateFormatter = [[NSDateFormatter alloc] init]; - [dateFormatter setDateStyle:NSDateFormatterMediumStyle]; - [dateFormatter setTimeStyle:NSDateFormatterNoStyle]; - } - return dateFormatter; -} - -//- (Topic *)topic { -// NSLog(@"%@", topic.guid); -// return topic; -//} - --(void)setTopic:(Topic *)t { - topic = t; - [self loadImages]; - NSLog(@"%@", topic.guid); -} - -#pragma mark - -#pragma mark View lifecycle - -- (void)viewDidLoad { -// UIBarButtonItem *doneItem = [[[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemDone target:self action:@selector(dismissModalViewControllerAnimated:)] autorelease]; -// self.navigationItem.rightBarButtonItem = doneItem; - [super viewDidLoad]; - - _acidcowPage = [[NSMutableData data] retain]; - - [self loadImages]; - // Uncomment the following line to display an Edit button in the navigation bar for this view controller. - // self.navigationItem.rightBarButtonItem = self.editButtonItem; -} - - -- (void)viewWillAppear:(BOOL)animated { - self.title = topic.title; - self.navigationController.navigationBar.barStyle = UIBarStyleDefault; - //[self.tableView reloadData]; - - [super viewWillAppear:animated]; -} - - -- (void)viewDidAppear:(BOOL)animated { - //[self becomeFirstResponder]; - [super viewDidAppear:animated]; -} - -/* -- (void)viewWillDisappear:(BOOL)animated { - [super viewWillDisappear:animated]; -} -*/ -/* -- (void)viewDidDisappear:(BOOL)animated { - [super viewDidDisappear:animated]; -} -*/ -/* -// Override to allow orientations other than the default portrait orientation. -- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation { - // Return YES for supported orientations. - return (interfaceOrientation == UIInterfaceOrientationPortrait); -} -*/ - -#pragma mark - -#pragma mark URL Connection Stuff -- (void)loadImages { - - NSURLRequest *theRequest=[NSURLRequest requestWithURL:[NSURL URLWithString:topic.guid] - cachePolicy:NSURLRequestUseProtocolCachePolicy - timeoutInterval:3600.0]; - - if ([NSURLConnection connectionWithRequest:theRequest delegate:self]) { - [_acidcowPage setLength:0]; - } else { - //[MBProgressHUD hideHUDForView:self.view animated:YES]; - //[WerdMergeAppDelegate prompt:@"Error" withMessage:@"No internet connection" andButtonTitle:@"shucks" withDelegate:self]; - } -} - -- (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response { - [_acidcowPage setLength:0]; -} - -- (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data { - [_acidcowPage appendData:data]; -} - -- (void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error { - - //[_receivedData release]; - - //[MBProgressHUD hideHUDForView:self.view animated:YES]; - //[WerdMergeAppDelegate prompt:@"Error" withMessage:[error localizedDescription] andButtonTitle:@"Aww man..." withDelegate:self]; - //[[error userInfo] objectForKey:NSURLErrorFailingURLStringErrorKey]); - -} - -- (void)connectionDidFinishLoading:(NSURLConnection *)connection { - NSString *html = [[[NSString alloc] initWithData:_acidcowPage encoding:NSUTF8StringEncoding] autorelease]; - - NSRegularExpression* regex = [NSRegularExpression regularExpressionWithPattern:@"http://acidcow\\.com/pics[^ \"]+\\.(jpg|png|jpeg|gif)" - options:NSRegularExpressionCaseInsensitive - error:nil]; - NSArray *results = [regex matchesInString:html options:0 range:NSMakeRange(0, [html length])]; - NSMutableArray *strings = [[NSMutableArray alloc] initWithCapacity:[results count]]; - for (NSTextCheckingResult *obj in results) { - [strings addObject:[html substringWithRange:[obj range]]]; - - //NSLog(@"found: %@", [html substringWithRange:[obj range]]); - } - - PhotoViewController *photoView = [[[PhotoViewController alloc] init] autorelease]; - photoView.photoList = strings; - [self.navigationController pushViewController:photoView animated:YES]; -// [self.view addSubview:(UIView *)photoView]; - -// if ([results count] > 0) { -// NSString *title = [currentString substringWithRange:[[results objectAtIndex:0] range]]; -// currentTopic.title = title; -// } - - //[_tableData removeAllObjects]; - //[_tableData addObjectsFromArray:[[json JSONValue] objectForKey:@"results"]]; - //[json release]; - -// if ([_tableData count] > 0) { -// [tableView reloadData]; -// [tableView scrollToRowAtIndexPath:[NSIndexPath indexPathForRow:0 inSection:0] atScrollPosition:UITableViewScrollPositionTop animated:NO]; -// self.tableView.allowsSelection = YES; -// self.tableView.scrollEnabled = YES; -// } -// else { -// [WerdMergeAppDelegate prompt:@"No Results" withMessage:@"Sorry, that word isn't in our dictionary" andButtonTitle:@"Alright" withDelegate:self]; -// } -// -// [MBProgressHUD hideHUDForView:self.view animated:YES]; - - //[_receivedData release]; -} - - -#pragma mark - -#pragma mark Table view data source - -//- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView { -// // Return the number of sections. -// return <#number of sections#>; -//} -// -// -//- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section { -// // Return the number of rows in the section. -// return <#number of rows in section#>; -//} - - -// Customize the appearance of table view cells. -- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { - - static NSString *CellIdentifier = @"Cell"; - - UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier]; - if (cell == nil) { - cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease]; - } - - // Configure the cell... - - return cell; -} - - -/* -// Override to support conditional editing of the table view. -- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath { - // Return NO if you do not want the specified item to be editable. - return YES; -} -*/ - - -/* -// Override to support editing the table view. -- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath { - - if (editingStyle == UITableViewCellEditingStyleDelete) { - // Delete the row from the data source. - [tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationFade]; - } - else if (editingStyle == UITableViewCellEditingStyleInsert) { - // Create a new instance of the appropriate class, insert it into the array, and add a new row to the table view. - } -} -*/ - - -/* -// Override to support rearranging the table view. -- (void)tableView:(UITableView *)tableView moveRowAtIndexPath:(NSIndexPath *)fromIndexPath toIndexPath:(NSIndexPath *)toIndexPath { -} -*/ - - -/* -// Override to support conditional rearranging of the table view. -- (BOOL)tableView:(UITableView *)tableView canMoveRowAtIndexPath:(NSIndexPath *)indexPath { - // Return NO if you do not want the item to be re-orderable. - return YES; -} -*/ - - -#pragma mark - -#pragma mark Table view delegate - -- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { - // Navigation logic may go here. Create and push another view controller. - /* - <#DetailViewController#> *detailViewController = [[<#DetailViewController#> alloc] initWithNibName:@"<#Nib name#>" bundle:nil]; - // ... - // Pass the selected object to the new view controller. - [self.navigationController pushViewController:detailViewController animated:YES]; - [detailViewController release]; - */ -} - - -#pragma mark - -#pragma mark Memory management - -- (void)didReceiveMemoryWarning { - // Releases the view if it doesn't have a superview. - [super didReceiveMemoryWarning]; - - // Relinquish ownership any cached data, images, etc. that aren't in use. -} - -- (void)viewDidUnload { - // Relinquish ownership of anything that can be recreated in viewDidLoad or on demand. - // For example: self.myOutlet = nil; -} - - -- (void)dealloc { - [_acidcowPage release]; - [topic release]; - [dateFormatter release]; - [super dealloc]; -} - - -@end - diff --git a/Classes/TopicsViewController.h b/Classes/TopicsViewController.h index 58acc43..c63635f 100644 --- a/Classes/TopicsViewController.h +++ b/Classes/TopicsViewController.h @@ -9,13 +9,13 @@ #import #import "XMLParser.h" #import "HJObjManager.h" -#import "PicDumpViewController.h" +//#import "PicDumpViewController.h" #import "PhotoViewController.h" @interface TopicsViewController : UITableViewController { UINavigationController *topicsNavigationController; NSMutableArray *topics; - PicDumpViewController *picDumpViewController; +// PicDumpViewController *picDumpViewController; PhotoViewController *photoViewController; XMLParser *parser; HJObjManager* objMan; @@ -24,7 +24,7 @@ @property (nonatomic, retain, readonly) UINavigationController *topicsNavigationController; @property (nonatomic, retain) PhotoViewController *photoViewController; @property (nonatomic, retain) NSMutableArray *topics; -@property (nonatomic, retain, readonly) PicDumpViewController *picDumpViewController; +//@property (nonatomic, retain, readonly) PicDumpViewController *picDumpViewController; @property (nonatomic, retain) XMLParser *parser; // Called by the ParserChoiceViewController based on the selected parser type. diff --git a/Classes/TopicsViewController.m b/Classes/TopicsViewController.m index ab07416..2dfc8c6 100644 --- a/Classes/TopicsViewController.m +++ b/Classes/TopicsViewController.m @@ -49,19 +49,19 @@ [self startParsing]; } -- (UINavigationController *)topicsNavigationController { - if (topicsNavigationController == nil) { - topicsNavigationController = [[UINavigationController alloc] initWithRootViewController:self.picDumpViewController]; - } - return topicsNavigationController; -} - -- (PicDumpViewController *)picDumpViewController { - if (picDumpViewController == nil) { - picDumpViewController = [[PicDumpViewController alloc] initWithNibName:@"PicDumpViewController" bundle:nil]; - } - return picDumpViewController; -} +//- (UINavigationController *)topicsNavigationController { +// if (topicsNavigationController == nil) { +// topicsNavigationController = [[UINavigationController alloc] initWithRootViewController:self.picDumpViewController]; +// } +// return topicsNavigationController; +//} +// +//- (PicDumpViewController *)picDumpViewController { +// if (picDumpViewController == nil) { +// picDumpViewController = [[PicDumpViewController alloc] initWithNibName:@"PicDumpViewController" bundle:nil]; +// } +// return picDumpViewController; +//} - (PhotoViewController *)photoViewController { if (photoViewController == nil) { @@ -70,16 +70,6 @@ return photoViewController; } -//- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier { -// -// self = [super initWithStyle:style reuseIdentifier:reuseIdentifier]; -// if (self) { -// // Initialization code. -// } -// return self; -//} - - - (void)setSelected:(BOOL)selected animated:(BOOL)animated { [super setSelected:selected animated:animated]; @@ -98,7 +88,7 @@ NSLog(@"startParsing"); //self.navigationItem.rightBarButtonItem.enabled = NO; // Reset the title - self.title = NSLocalizedString(@"Getting Recent Picdumps...", @"Loading"); + //self.title = NSLocalizedString(@"Getting Recent Picdumps...", @"Loading"); // Allocate the array for song storage, or empty the results of previous parses if (topics == nil) { self.topics = [NSMutableArray array]; @@ -202,7 +192,7 @@ #pragma mark Implementation - (void)parserDidEndParsingData:(XMLParser *)parser { - self.title = [NSString stringWithFormat:NSLocalizedString(@"Recent Picdumps (%d)", @"Recent"), [topics count]]; + //self.title = [NSString stringWithFormat:NSLocalizedString(@"Recent Picdumps (%d)", @"Recent"), [topics count]]; [self.tableView reloadData]; //self.navigationItem.rightBarButtonItem.enabled = YES; self.parser = nil; @@ -210,13 +200,14 @@ - (void)parser:(XMLParser *)parser didParseTopics:(NSArray *)parsedTopics { [topics addObjectsFromArray:parsedTopics]; - // Three scroll view properties are checked to keep the user interface smooth during parse. When new objects are delivered + + // Three scroll view properties are checked to keep the user interface smooth during parse. When new objects are delivered // by the parser, the table view is reloaded to display them. If the table is reloaded while // the user is scrolling, this can result in eratic behavior. dragging, tracking, and decelerating can be checked // for this purpose. When the parser finishes, reloadData will be called in parserDidEndParsingData:, guaranteeing // that all data will ultimately be displayed even if reloadData is not called in this method because of user interaction. if (!self.tableView.dragging && !self.tableView.tracking && !self.tableView.decelerating) { - self.title = [NSString stringWithFormat:NSLocalizedString(@"Recent Picdumps (%d)", @"Recent"), [topics count]]; + //self.title = [NSString stringWithFormat:NSLocalizedString(@"Recent Picdumps (%d)", @"Recent"), [topics count]]; [self.tableView reloadData]; } } diff --git a/Images/PicCastTabBarIcons.category.30.png b/Images/PicCastTabBarIcons.category.30.png new file mode 100644 index 0000000..1219433 Binary files /dev/null and b/Images/PicCastTabBarIcons.category.30.png differ diff --git a/Images/PicCastTabBarIcons.category.30@2x.png b/Images/PicCastTabBarIcons.category.30@2x.png new file mode 100644 index 0000000..2631c39 Binary files /dev/null and b/Images/PicCastTabBarIcons.category.30@2x.png differ diff --git a/Images/PicCastTabBarIcons.fave.30.png b/Images/PicCastTabBarIcons.fave.30.png new file mode 100644 index 0000000..2544dc2 Binary files /dev/null and b/Images/PicCastTabBarIcons.fave.30.png differ diff --git a/Images/PicCastTabBarIcons.fave.30@2x.png b/Images/PicCastTabBarIcons.fave.30@2x.png new file mode 100644 index 0000000..8976b67 Binary files /dev/null and b/Images/PicCastTabBarIcons.fave.30@2x.png differ diff --git a/Images/PicCastTabBarIcons.feeds.30.png b/Images/PicCastTabBarIcons.feeds.30.png new file mode 100644 index 0000000..705863e Binary files /dev/null and b/Images/PicCastTabBarIcons.feeds.30.png differ diff --git a/Images/PicCastTabBarIcons.feeds.30@2x.png b/Images/PicCastTabBarIcons.feeds.30@2x.png new file mode 100644 index 0000000..1e11c9a Binary files /dev/null and b/Images/PicCastTabBarIcons.feeds.30@2x.png differ diff --git a/MainWindow.xib b/MainWindow.xib index 7b42b0a..f1cbb4e 100644 --- a/MainWindow.xib +++ b/MainWindow.xib @@ -12,6 +12,7 @@ YES + YES @@ -62,53 +63,75 @@ IBCocoaTouchFramework NO - - YES - - - Item - IBCocoaTouchFramework - - - - - 1 + + + Cast + + NSImage + PicCastTabBarIcons.feeds.30.png IBCocoaTouchFramework - NO - - - 256 - {0, 0} - NO - YES - YES - IBCocoaTouchFramework + + + + + + 1 + + IBCocoaTouchFramework + NO + + + 256 + {0, 0} + NO + YES + YES + IBCocoaTouchFramework + + 1 + MC4wOTMzOTc2Mzk2OSAwLjE3NTQ0MzM4MTEgMC4yNTAzODczMTEAA - - YES - - - IBCocoaTouchFramework - 10 - - - Item + + + YES + + + IBCocoaTouchFramework + 10 + + + + PicCast + IBCocoaTouchFramework - - - - 1 + 1 + + 4 IBCocoaTouchFramework - NO + + + 1 + + IBCocoaTouchFramework + NO + + + YES + + Category + + NSImage + PicCastTabBarIcons.category.30.png + IBCocoaTouchFramework - 11 + SecondView @@ -120,8 +143,13 @@ + Faves + + NSImage + PicCastTabBarIcons.fave.30.png + IBCocoaTouchFramework - 8 + @@ -134,7 +162,8 @@ IBCocoaTouchFramework - 0 + + 8 @@ -318,8 +347,17 @@ 135 + + YES + + + + 136 + + + @@ -342,6 +380,7 @@ 129.IBEditorWindowLastContentRect 129.IBPluginDependency 131.IBPluginDependency + 136.IBPluginDependency 2.IBAttributePlaceholdersKey 2.IBEditorWindowLastContentRect 2.IBPluginDependency @@ -352,7 +391,7 @@ YES UIApplication UIResponder - {{499, 353}, {320, 480}} + {{488, 348}, {320, 480}} com.apple.InterfaceBuilder.IBCocoaTouchPlugin com.apple.InterfaceBuilder.IBCocoaTouchPlugin @@ -368,6 +407,7 @@ {{0, 354}, {320, 480}} com.apple.InterfaceBuilder.IBCocoaTouchPlugin com.apple.InterfaceBuilder.IBCocoaTouchPlugin + com.apple.InterfaceBuilder.IBCocoaTouchPlugin YES @@ -397,27 +437,11 @@ - 135 + 136 YES - - TopicsViewController - UITableViewController - - IBProjectSource - Classes/TopicsViewController.h - - - - UIWindow - UIView - - IBUserSource - - - PicCastAppDelegate NSObject @@ -465,6 +489,22 @@ Classes/PicCastAppDelegate.h + + TopicsViewController + UITableViewController + + IBProjectSource + Classes/TopicsViewController.h + + + + UIWindow + UIView + + IBUserSource + + + YES @@ -538,6 +578,20 @@ Foundation.framework/Headers/NSURLConnection.h + + NSObject + + IBFrameworkSource + QuartzCore.framework/Headers/CAAnimation.h + + + + NSObject + + IBFrameworkSource + QuartzCore.framework/Headers/CALayer.h + + NSObject @@ -732,6 +786,21 @@ YES PicCast.xcodeproj 3 + + YES + + YES + PicCastTabBarIcons.category.30.png + PicCastTabBarIcons.fave.30.png + PicCastTabBarIcons.feeds.30.png + + + YES + {30, 30} + {30, 30} + {30, 30} + + 132 diff --git a/PicCast.xcodeproj/handler.mode1v3 b/PicCast.xcodeproj/handler.mode1v3 index 9f4f83f..4d1e202 100644 --- a/PicCast.xcodeproj/handler.mode1v3 +++ b/PicCast.xcodeproj/handler.mode1v3 @@ -229,8 +229,6 @@ Layout - BecomeActive - ContentConfiguration PBXBottomSmartGroupGIDs @@ -276,13 +274,13 @@ PBXSmartGroupTreeModuleOutlineStateSelectionKey - 15 + 25 2 0 PBXSmartGroupTreeModuleOutlineStateVisibleRectKey - {{0, 0}, {282, 667}} + {{0, 34}, {282, 667}} PBXTopSmartGroupGIDs @@ -301,7 +299,7 @@ 282 RubberWindowFrame - 85 138 1268 726 0 0 1440 878 + 50 128 1268 726 0 0 1440 878 Module PBXSmartGroupTreeModule @@ -312,6 +310,8 @@ Dock + BecomeActive + ContentConfiguration PBXProjectModuleGUID @@ -329,7 +329,7 @@ _historyCapacity 0 bookmark - 4ECFB6E2135F58D2007FAB8D + 4ECFB7C7135FC2FB007FAB8D history 4E68286F1359595F001EB808 @@ -347,14 +347,15 @@ 4EA96020135CF43B009243EE 4EA96027135CF455009243EE 4E759BF4135D31C500171031 - 4E759BF8135D31C500171031 - 4E759BFA135D31C500171031 4E759C0D135D324000171031 4E759C0E135D324000171031 - 4E759C33135D3B5500171031 - 4E759C4A135DCD1400171031 4ECFB6E1135F58D2007FAB8D - 4ECFB6D7135F58BF007FAB8D + 4ECFB724135F80A7007FAB8D + 4ECFB73A135F8619007FAB8D + 4ECFB7A4135F9057007FAB8D + 4ECFB7A5135F9057007FAB8D + 4ECFB7C5135FC2FB007FAB8D + 4ECFB7C6135FC2FB007FAB8D SplitCount @@ -366,14 +367,14 @@ GeometryConfiguration Frame - {{0, 0}, {964, 464}} + {{0, 0}, {964, 680}} RubberWindowFrame - 85 138 1268 726 0 0 1440 878 + 50 128 1268 726 0 0 1440 878 Module PBXNavigatorGroup Proportion - 464pt + 680pt ContentConfiguration @@ -386,14 +387,14 @@ GeometryConfiguration Frame - {{0, 469}, {964, 216}} + {{0, 685}, {964, 0}} RubberWindowFrame - 85 138 1268 726 0 0 1440 878 + 50 128 1268 726 0 0 1440 878 Module XCDetailModule Proportion - 216pt + 0pt Proportion @@ -552,15 +553,17 @@ 5 WindowOrderList - 4ECFB6E6135F58D2007FAB8D + 4ECFB7C8135FC2FB007FAB8D + 1C530D57069F1CE1000CFCEE + 4ECFB727135F80A7007FAB8D 4ECFB6E7135F58D2007FAB8D - 1C78EAAD065D492600B07095 1CD10A99069EF8BA00B06720 4E6827C813593DE3001EB808 + 1C78EAAD065D492600B07095 /Users/handler/Documents/code/xCode/PicCast/PicCast.xcodeproj WindowString - 85 138 1268 726 0 0 1440 878 + 50 128 1268 726 0 0 1440 878 WindowToolsV3 @@ -576,12 +579,14 @@ Dock + BecomeActive + ContentConfiguration PBXProjectModuleGUID 1CD0528F0623707200166675 PBXProjectModuleLabel - PicCastAppDelegate.m + PhotoViewController.m StatusBarVisibility @@ -598,8 +603,6 @@ 262pt - BecomeActive - ContentConfiguration PBXProjectModuleGUID @@ -799,7 +802,7 @@ PBXProjectModuleGUID 1CDD528C0622207200134675 PBXProjectModuleLabel - TopicsViewController.m + PhotoViewController.m StatusBarVisibility @@ -857,8 +860,8 @@ TableOfContents 1C530D57069F1CE1000CFCEE - 4E759C1A135D329500171031 - 4E759C1B135D329500171031 + 4ECFB71F135F80A0007FAB8D + 4ECFB720135F80A0007FAB8D 1CDD528C0622207200134675 1CD0528E0623707200166675 @@ -886,6 +889,8 @@ Dock + BecomeActive + ContentConfiguration PBXProjectModuleGUID @@ -931,7 +936,7 @@ WindowToolGUID 1C78EAAD065D492600B07095 WindowToolIsVisible - + Identifier diff --git a/PicCast.xcodeproj/handler.pbxuser b/PicCast.xcodeproj/handler.pbxuser index 765c9a4..6865884 100644 --- a/PicCast.xcodeproj/handler.pbxuser +++ b/PicCast.xcodeproj/handler.pbxuser @@ -9,9 +9,9 @@ }; 1D3623250D0F684500981E51 /* PicCastAppDelegate.m */ = { uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {903, 1508}}"; - sepNavSelRange = "{3540, 0}"; - sepNavVisRange = "{3, 1031}"; + sepNavIntBoundsRect = "{{0, 0}, {1965, 1326}}"; + sepNavSelRange = "{223, 0}"; + sepNavVisRange = "{3, 1967}"; }; }; 1D6058900D05DD3D006BFB54 /* PicCast */ = { @@ -152,6 +152,65 @@ 4ECFB6D8135F58BF007FAB8D /* PBXTextBookmark */ = 4ECFB6D8135F58BF007FAB8D /* PBXTextBookmark */; 4ECFB6E1135F58D2007FAB8D /* PBXTextBookmark */ = 4ECFB6E1135F58D2007FAB8D /* PBXTextBookmark */; 4ECFB6E2135F58D2007FAB8D /* PBXTextBookmark */ = 4ECFB6E2135F58D2007FAB8D /* PBXTextBookmark */; + 4ECFB71B135F80A0007FAB8D /* PBXTextBookmark */ = 4ECFB71B135F80A0007FAB8D /* PBXTextBookmark */; + 4ECFB71D135F80A0007FAB8D /* PBXTextBookmark */ = 4ECFB71D135F80A0007FAB8D /* PBXTextBookmark */; + 4ECFB71E135F80A0007FAB8D /* PBXTextBookmark */ = 4ECFB71E135F80A0007FAB8D /* PBXTextBookmark */; + 4ECFB723135F80A7007FAB8D /* PBXTextBookmark */ = 4ECFB723135F80A7007FAB8D /* PBXTextBookmark */; + 4ECFB724135F80A7007FAB8D /* PBXBookmark */ = 4ECFB724135F80A7007FAB8D /* PBXBookmark */; + 4ECFB725135F80A7007FAB8D /* PBXTextBookmark */ = 4ECFB725135F80A7007FAB8D /* PBXTextBookmark */; + 4ECFB728135F80B9007FAB8D /* PBXTextBookmark */ = 4ECFB728135F80B9007FAB8D /* PBXTextBookmark */; + 4ECFB729135F80B9007FAB8D /* PBXTextBookmark */ = 4ECFB729135F80B9007FAB8D /* PBXTextBookmark */; + 4ECFB72A135F80B9007FAB8D /* PBXTextBookmark */ = 4ECFB72A135F80B9007FAB8D /* PBXTextBookmark */; + 4ECFB72D135F80C1007FAB8D /* PBXTextBookmark */ = 4ECFB72D135F80C1007FAB8D /* PBXTextBookmark */; + 4ECFB73A135F8619007FAB8D /* PBXTextBookmark */ = 4ECFB73A135F8619007FAB8D /* PBXTextBookmark */; + 4ECFB73B135F8619007FAB8D /* PBXTextBookmark */ = 4ECFB73B135F8619007FAB8D /* PBXTextBookmark */; + 4ECFB73C135F8619007FAB8D /* PBXTextBookmark */ = 4ECFB73C135F8619007FAB8D /* PBXTextBookmark */; + 4ECFB73D135F8619007FAB8D /* PBXTextBookmark */ = 4ECFB73D135F8619007FAB8D /* PBXTextBookmark */; + 4ECFB741135F86B1007FAB8D /* PBXTextBookmark */ = 4ECFB741135F86B1007FAB8D /* PBXTextBookmark */; + 4ECFB746135F874C007FAB8D /* PBXTextBookmark */ = 4ECFB746135F874C007FAB8D /* PBXTextBookmark */; + 4ECFB747135F874C007FAB8D /* PBXTextBookmark */ = 4ECFB747135F874C007FAB8D /* PBXTextBookmark */; + 4ECFB748135F87ED007FAB8D /* PBXTextBookmark */ = 4ECFB748135F87ED007FAB8D /* PBXTextBookmark */; + 4ECFB749135F87ED007FAB8D /* PBXTextBookmark */ = 4ECFB749135F87ED007FAB8D /* PBXTextBookmark */; + 4ECFB74A135F87ED007FAB8D /* PBXTextBookmark */ = 4ECFB74A135F87ED007FAB8D /* PBXTextBookmark */; + 4ECFB74B135F87ED007FAB8D /* PBXTextBookmark */ = 4ECFB74B135F87ED007FAB8D /* PBXTextBookmark */; + 4ECFB74E135F87F3007FAB8D /* PBXTextBookmark */ = 4ECFB74E135F87F3007FAB8D /* PBXTextBookmark */; + 4ECFB781135F8CAA007FAB8D /* PBXTextBookmark */ = 4ECFB781135F8CAA007FAB8D /* PBXTextBookmark */; + 4ECFB782135F8CAA007FAB8D /* PBXTextBookmark */ = 4ECFB782135F8CAA007FAB8D /* PBXTextBookmark */; + 4ECFB783135F8CAA007FAB8D /* PBXTextBookmark */ = 4ECFB783135F8CAA007FAB8D /* PBXTextBookmark */; + 4ECFB786135F8D05007FAB8D /* PBXTextBookmark */ = 4ECFB786135F8D05007FAB8D /* PBXTextBookmark */; + 4ECFB787135F8D05007FAB8D /* PBXTextBookmark */ = 4ECFB787135F8D05007FAB8D /* PBXTextBookmark */; + 4ECFB788135F8D11007FAB8D /* PBXTextBookmark */ = 4ECFB788135F8D11007FAB8D /* PBXTextBookmark */; + 4ECFB78B135F8D65007FAB8D /* PBXTextBookmark */ = 4ECFB78B135F8D65007FAB8D /* PBXTextBookmark */; + 4ECFB78C135F8D65007FAB8D /* PBXTextBookmark */ = 4ECFB78C135F8D65007FAB8D /* PBXTextBookmark */; + 4ECFB78D135F8D65007FAB8D /* PBXTextBookmark */ = 4ECFB78D135F8D65007FAB8D /* PBXTextBookmark */; + 4ECFB790135F8D7C007FAB8D /* PBXTextBookmark */ = 4ECFB790135F8D7C007FAB8D /* PBXTextBookmark */; + 4ECFB795135F8DE1007FAB8D /* PBXTextBookmark */ = 4ECFB795135F8DE1007FAB8D /* PBXTextBookmark */; + 4ECFB796135F8DE1007FAB8D /* XCBuildMessageTextBookmark */ = 4ECFB796135F8DE1007FAB8D /* XCBuildMessageTextBookmark */; + 4ECFB797135F8DE1007FAB8D /* PBXTextBookmark */ = 4ECFB797135F8DE1007FAB8D /* PBXTextBookmark */; + 4ECFB798135F8DE1007FAB8D /* PBXTextBookmark */ = 4ECFB798135F8DE1007FAB8D /* PBXTextBookmark */; + 4ECFB79C135F902C007FAB8D /* PBXTextBookmark */ = 4ECFB79C135F902C007FAB8D /* PBXTextBookmark */; + 4ECFB79D135F902C007FAB8D /* PBXTextBookmark */ = 4ECFB79D135F902C007FAB8D /* PBXTextBookmark */; + 4ECFB79E135F902C007FAB8D /* PBXTextBookmark */ = 4ECFB79E135F902C007FAB8D /* PBXTextBookmark */; + 4ECFB79F135F902C007FAB8D /* PBXTextBookmark */ = 4ECFB79F135F902C007FAB8D /* PBXTextBookmark */; + 4ECFB7A4135F9057007FAB8D /* PBXTextBookmark */ = 4ECFB7A4135F9057007FAB8D /* PBXTextBookmark */; + 4ECFB7A5135F9057007FAB8D /* PBXTextBookmark */ = 4ECFB7A5135F9057007FAB8D /* PBXTextBookmark */; + 4ECFB7A6135F9057007FAB8D /* XCBuildMessageTextBookmark */ = 4ECFB7A6135F9057007FAB8D /* XCBuildMessageTextBookmark */; + 4ECFB7A7135F9057007FAB8D /* PBXTextBookmark */ = 4ECFB7A7135F9057007FAB8D /* PBXTextBookmark */; + 4ECFB7A9135F9057007FAB8D /* PBXTextBookmark */ = 4ECFB7A9135F9057007FAB8D /* PBXTextBookmark */; + 4ECFB7AA135F9057007FAB8D /* XCBuildMessageTextBookmark */ = 4ECFB7AA135F9057007FAB8D /* XCBuildMessageTextBookmark */; + 4ECFB7AB135F9057007FAB8D /* PBXTextBookmark */ = 4ECFB7AB135F9057007FAB8D /* PBXTextBookmark */; + 4ECFB7AC135F9057007FAB8D /* PBXTextBookmark */ = 4ECFB7AC135F9057007FAB8D /* PBXTextBookmark */; + 4ECFB7AD135F90ED007FAB8D /* PBXTextBookmark */ = 4ECFB7AD135F90ED007FAB8D /* PBXTextBookmark */; + 4ECFB7AE135F90ED007FAB8D /* PBXTextBookmark */ = 4ECFB7AE135F90ED007FAB8D /* PBXTextBookmark */; + 4ECFB7B1135F90FA007FAB8D /* PBXTextBookmark */ = 4ECFB7B1135F90FA007FAB8D /* PBXTextBookmark */; + 4ECFB7B5135F917C007FAB8D /* PBXTextBookmark */ = 4ECFB7B5135F917C007FAB8D /* PBXTextBookmark */; + 4ECFB7B9135F91C8007FAB8D /* PBXTextBookmark */ = 4ECFB7B9135F91C8007FAB8D /* PBXTextBookmark */; + 4ECFB7BF135F9234007FAB8D /* PBXTextBookmark */ = 4ECFB7BF135F9234007FAB8D /* PBXTextBookmark */; + 4ECFB7C1135FC2E6007FAB8D /* PBXTextBookmark */ = 4ECFB7C1135FC2E6007FAB8D /* PBXTextBookmark */; + 4ECFB7C2135FC2E6007FAB8D /* PBXTextBookmark */ = 4ECFB7C2135FC2E6007FAB8D /* PBXTextBookmark */; + 4ECFB7C5135FC2FB007FAB8D /* PBXTextBookmark */ = 4ECFB7C5135FC2FB007FAB8D /* PBXTextBookmark */; + 4ECFB7C6135FC2FB007FAB8D /* PBXTextBookmark */ = 4ECFB7C6135FC2FB007FAB8D /* PBXTextBookmark */; + 4ECFB7C7135FC2FB007FAB8D /* PBXTextBookmark */ = 4ECFB7C7135FC2FB007FAB8D /* PBXTextBookmark */; 4ED6DB46135A1FCE00BEF0B7 = 4ED6DB46135A1FCE00BEF0B7 /* PBXTextBookmark */; 4ED6DB47135A1FCE00BEF0B7 = 4ED6DB47135A1FCE00BEF0B7 /* PBXTextBookmark */; 4ED6DB4F135A25C700BEF0B7 = 4ED6DB4F135A25C700BEF0B7 /* PBXTextBookmark */; @@ -219,16 +278,16 @@ 4E6827E713594115001EB808 /* TopicsViewController.h */ = { uiCtxt = { sepNavIntBoundsRect = "{{0, 0}, {903, 442}}"; - sepNavSelRange = "{285, 0}"; - sepNavVisRange = "{0, 1048}"; + sepNavSelRange = "{330, 0}"; + sepNavVisRange = "{0, 1049}"; }; }; 4E6827E813594115001EB808 /* TopicsViewController.m */ = { uiCtxt = { - sepNavFolds = "{\n c = (\n {\n l = \"number of sections\";\n r = \"{9605, 22}\";\n s = 1;\n },\n {\n l = \"number of rows in section\";\n r = \"{9796, 29}\";\n s = 1;\n },\n {\n l = DetailViewController;\n r = \"{11962, 24}\";\n s = 1;\n },\n {\n l = DetailViewController;\n r = \"{12013, 24}\";\n s = 1;\n },\n {\n l = \"Nib name\";\n r = \"{12063, 12}\";\n s = 1;\n }\n );\n r = \"{0, 12869}\";\n s = 0;\n}"; - sepNavIntBoundsRect = "{{0, 0}, {936, 4628}}"; - sepNavSelRange = "{6602, 5}"; - sepNavVisRange = "{6442, 1215}"; + sepNavFolds = "{\n c = (\n {\n l = \"number of sections\";\n r = \"{9377, 22}\";\n s = 1;\n },\n {\n l = \"number of rows in section\";\n r = \"{9568, 29}\";\n s = 1;\n },\n {\n l = DetailViewController;\n r = \"{11734, 24}\";\n s = 1;\n },\n {\n l = DetailViewController;\n r = \"{11785, 24}\";\n s = 1;\n },\n {\n l = \"Nib name\";\n r = \"{11835, 12}\";\n s = 1;\n }\n );\n r = \"{0, 12641}\";\n s = 0;\n}"; + sepNavIntBoundsRect = "{{0, 0}, {1272, 4836}}"; + sepNavSelRange = "{2567, 0}"; + sepNavVisRange = "{2534, 1104}"; sepNavWindowFrame = "{{15, 323}, {1196, 550}}"; }; }; @@ -339,7 +398,7 @@ fRef = 4EA95FD4135CE959009243EE /* PhotoViewController.m */; name = "PhotoViewController.m: 50"; rLen = 0; - rLoc = 4525; + rLoc = 4652; rType = 0; vrLen = 746; vrLoc = 87; @@ -360,6 +419,13 @@ rLen = 0; rLoc = 9223372036854775808; }; + 4E759BB4135D28E300171031 /* PicCast.png */ = { + isa = PBXFileReference; + lastKnownFileType = image.png; + name = PicCast.png; + path = /Users/handler/Documents/code/xCode/PicCast/Classes/PicCast.png; + sourceTree = ""; + }; 4E759BF3135D31C500171031 /* PBXBookmark */ = { isa = PBXBookmark; fRef = 4E759BB4135D28E300171031 /* PicCast.png */; @@ -386,7 +452,7 @@ fRef = 1D3623250D0F684500981E51 /* PicCastAppDelegate.m */; name = "acidcowAppDelegate.m: 30"; rLen = 0; - rLoc = 977; + rLoc = 957; rType = 0; vrLen = 1005; vrLoc = 28; @@ -426,7 +492,7 @@ fRef = 4E6827E713594115001EB808 /* TopicsViewController.h */; name = "TopicsViewController.h: 13"; rLen = 0; - rLoc = 285; + rLoc = 287; rType = 0; vrLen = 1048; vrLoc = 0; @@ -436,7 +502,7 @@ fRef = 4E6827E813594115001EB808 /* TopicsViewController.m */; name = "TopicsViewController.m: 196"; rLen = 0; - rLoc = 6907; + rLoc = 6673; rType = 0; vrLen = 1319; vrLoc = 5936; @@ -446,7 +512,7 @@ fRef = 4EA95FD4135CE959009243EE /* PhotoViewController.m */; name = "PhotoViewController.m: 104"; rLen = 0; - rLoc = 3169; + rLoc = 3296; rType = 0; vrLen = 932; vrLoc = 644; @@ -456,7 +522,7 @@ fRef = 4EA95FD4135CE959009243EE /* PhotoViewController.m */; name = "PhotoViewController.m: 106"; rLen = 0; - rLoc = 3300; + rLoc = 3427; rType = 0; vrLen = 932; vrLoc = 644; @@ -490,7 +556,7 @@ fRef = 4EA95FD4135CE959009243EE /* PhotoViewController.m */; name = "PhotoViewController.m: 106"; rLen = 0; - rLoc = 3300; + rLoc = 3427; rType = 0; vrLen = 932; vrLoc = 644; @@ -520,7 +586,7 @@ fRef = 4E6827E813594115001EB808 /* TopicsViewController.m */; name = "TopicsViewController.m: 196"; rLen = 0; - rLoc = 6907; + rLoc = 6673; rType = 0; vrLen = 1518; vrLoc = 6285; @@ -530,7 +596,7 @@ fRef = 4E6827E813594115001EB808 /* TopicsViewController.m */; name = "TopicsViewController.m: 196"; rLen = 0; - rLoc = 6854; + rLoc = 6620; rType = 0; vrLen = 1475; vrLoc = 6285; @@ -551,7 +617,7 @@ isa = PBXTextBookmark; fRef = 4E6827E813594115001EB808 /* TopicsViewController.m */; rLen = 5; - rLoc = 6602; + rLoc = 6368; rType = 0; }; 4E759C18135D329500171031 /* PBXTextBookmark */ = { @@ -559,7 +625,7 @@ fRef = 4E6827E813594115001EB808 /* TopicsViewController.m */; name = "TopicsViewController.m: 193"; rLen = 0; - rLoc = 6706; + rLoc = 6472; rType = 0; vrLen = 1467; vrLoc = 6285; @@ -581,7 +647,7 @@ fRef = 4E6827E813594115001EB808 /* TopicsViewController.m */; name = "TopicsViewController.m: 193"; rLen = 0; - rLoc = 6706; + rLoc = 6472; rType = 0; vrLen = 1467; vrLoc = 6285; @@ -591,7 +657,7 @@ fRef = 4EA95FD4135CE959009243EE /* PhotoViewController.m */; name = "PhotoViewController.m: 106"; rLen = 0; - rLoc = 3300; + rLoc = 3427; rType = 0; vrLen = 932; vrLoc = 644; @@ -601,7 +667,7 @@ fRef = 4EA95FD4135CE959009243EE /* PhotoViewController.m */; name = "PhotoViewController.m: 36"; rLen = 0; - rLoc = 697; + rLoc = 824; rType = 0; vrLen = 747; vrLoc = 273; @@ -623,7 +689,7 @@ fRef = 4EA95FD4135CE959009243EE /* PhotoViewController.m */; name = "PhotoViewController.m: 36"; rLen = 0; - rLoc = 682; + rLoc = 809; rType = 0; vrLen = 796; vrLoc = 343; @@ -645,7 +711,7 @@ fRef = 4E6827E813594115001EB808 /* TopicsViewController.m */; name = "TopicsViewController.m: 190"; rLen = 5; - rLoc = 6602; + rLoc = 6368; rType = 0; vrLen = 1215; vrLoc = 6442; @@ -655,7 +721,7 @@ fRef = 4EA95FD4135CE959009243EE /* PhotoViewController.m */; name = "PhotoViewController.m: 52"; rLen = 0; - rLoc = 1138; + rLoc = 1265; rType = 0; vrLen = 776; vrLoc = 458; @@ -677,7 +743,7 @@ fRef = 4EA95FD4135CE959009243EE /* PhotoViewController.m */; name = "PhotoViewController.m: 52"; rLen = 0; - rLoc = 1138; + rLoc = 1265; rType = 0; vrLen = 772; vrLoc = 390; @@ -687,7 +753,7 @@ fRef = 4E6827E813594115001EB808 /* TopicsViewController.m */; name = "TopicsViewController.m: 193"; rLen = 0; - rLoc = 6706; + rLoc = 6472; rType = 0; vrLen = 1467; vrLoc = 6285; @@ -697,7 +763,7 @@ fRef = 4E6827E813594115001EB808 /* TopicsViewController.m */; name = "TopicsViewController.m: 85"; rLen = 0; - rLoc = 2875; + rLoc = 2639; rType = 0; vrLen = 924; vrLoc = 2309; @@ -719,7 +785,7 @@ fRef = 4E6827E813594115001EB808 /* TopicsViewController.m */; name = "TopicsViewController.m: 85"; rLen = 0; - rLoc = 2875; + rLoc = 2639; rType = 0; vrLen = 923; vrLoc = 2309; @@ -729,7 +795,7 @@ fRef = 1D3623250D0F684500981E51 /* PicCastAppDelegate.m */; name = "acidcowAppDelegate.m: 12"; rLen = 0; - rLoc = 244; + rLoc = 224; rType = 0; vrLen = 1049; vrLoc = 3; @@ -749,7 +815,7 @@ fRef = 1D3623250D0F684500981E51 /* PicCastAppDelegate.m */; name = "acidcowAppDelegate.m: 29"; rLen = 0; - rLoc = 765; + rLoc = 745; rType = 0; vrLen = 1424; vrLoc = 1852; @@ -769,7 +835,7 @@ fRef = 4E6827E813594115001EB808 /* TopicsViewController.m */; name = "TopicsViewController.m: 128"; rLen = 4; - rLoc = 4592; + rLoc = 4358; rType = 0; vrLen = 1660; vrLoc = 3601; @@ -790,16 +856,16 @@ }; 4EA95FD3135CE959009243EE /* PhotoViewController.h */ = { uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {903, 421}}"; + sepNavIntBoundsRect = "{{0, 0}, {903, 409}}"; sepNavSelRange = "{501, 0}"; sepNavVisRange = "{0, 529}"; }; }; 4EA95FD4135CE959009243EE /* PhotoViewController.m */ = { uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {964, 2132}}"; - sepNavSelRange = "{1138, 0}"; - sepNavVisRange = "{390, 772}"; + sepNavIntBoundsRect = "{{0, 0}, {901, 2197}}"; + sepNavSelRange = "{653, 0}"; + sepNavVisRange = "{242, 603}"; }; }; 4EA95FDF135CEE6A009243EE /* PBXTextBookmark */ = { @@ -867,7 +933,7 @@ fRef = 4EA95FD4135CE959009243EE /* PhotoViewController.m */; name = "PhotoViewController.m: 50"; rLen = 0; - rLoc = 4525; + rLoc = 4652; rType = 0; vrLen = 950; vrLoc = 148; @@ -877,7 +943,7 @@ fRef = 1D3623250D0F684500981E51 /* PicCastAppDelegate.m */; name = "acidcowAppDelegate.m: 13"; rLen = 0; - rLoc = 244; + rLoc = 224; rType = 0; vrLen = 1048; vrLoc = 3; @@ -896,7 +962,7 @@ fRef = 1D3623250D0F684500981E51 /* PicCastAppDelegate.m */; name = "PicCastAppDelegate.m: 112"; rLen = 0; - rLoc = 3540; + rLoc = 3520; rType = 0; vrLen = 363; vrLoc = 3; @@ -916,11 +982,580 @@ fRef = 1D3623250D0F684500981E51 /* PicCastAppDelegate.m */; name = "PicCastAppDelegate.m: 112"; rLen = 0; - rLoc = 3540; + rLoc = 3520; + rType = 0; + vrLen = 1031; + vrLoc = 3; + }; + 4ECFB71B135F80A0007FAB8D /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 1D3623250D0F684500981E51 /* PicCastAppDelegate.m */; + name = "PicCastAppDelegate.m: 112"; + rLen = 0; + rLoc = 3520; + rType = 0; + vrLen = 328; + vrLoc = 3; + }; + 4ECFB71D135F80A0007FAB8D /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 4E6827E813594115001EB808 /* TopicsViewController.m */; + rLen = 6; + rLoc = 8045; + rType = 0; + }; + 4ECFB71E135F80A0007FAB8D /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 4E6827E813594115001EB808 /* TopicsViewController.m */; + name = "TopicsViewController.m: 214"; + rLen = 0; + rLoc = 7303; + rType = 0; + vrLen = 1230; + vrLoc = 7324; + }; + 4ECFB723135F80A7007FAB8D /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 1D3623250D0F684500981E51 /* PicCastAppDelegate.m */; + name = "PicCastAppDelegate.m: 112"; + rLen = 0; + rLoc = 3520; rType = 0; vrLen = 1031; vrLoc = 3; }; + 4ECFB724135F80A7007FAB8D /* PBXBookmark */ = { + isa = PBXBookmark; + fRef = 4ECFB6E8135F6FDB007FAB8D /* PicCast.png */; + }; + 4ECFB725135F80A7007FAB8D /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 4EA95FD3135CE959009243EE /* PhotoViewController.h */; + name = "PhotoViewController.h: 21"; + rLen = 0; + rLoc = 501; + rType = 0; + vrLen = 529; + vrLoc = 0; + }; + 4ECFB728135F80B9007FAB8D /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 1D3623250D0F684500981E51 /* PicCastAppDelegate.m */; + name = "PicCastAppDelegate.m: 112"; + rLen = 0; + rLoc = 3520; + rType = 0; + vrLen = 328; + vrLoc = 3; + }; + 4ECFB729135F80B9007FAB8D /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 4E6827E813594115001EB808 /* TopicsViewController.m */; + rLen = 6; + rLoc = 8070; + rType = 0; + }; + 4ECFB72A135F80B9007FAB8D /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 4E6827E813594115001EB808 /* TopicsViewController.m */; + name = "TopicsViewController.m: 220"; + rLen = 0; + rLoc = 7985; + rType = 0; + vrLen = 1250; + vrLoc = 7538; + }; + 4ECFB72D135F80C1007FAB8D /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 4EA95FD3135CE959009243EE /* PhotoViewController.h */; + name = "PhotoViewController.h: 21"; + rLen = 0; + rLoc = 501; + rType = 0; + vrLen = 529; + vrLoc = 0; + }; + 4ECFB73A135F8619007FAB8D /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 4EA95FD3135CE959009243EE /* PhotoViewController.h */; + name = "PhotoViewController.h: 21"; + rLen = 0; + rLoc = 501; + rType = 0; + vrLen = 529; + vrLoc = 0; + }; + 4ECFB73B135F8619007FAB8D /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 4E6827E713594115001EB808 /* TopicsViewController.h */; + name = "TopicsViewController.h: 13"; + rLen = 0; + rLoc = 287; + rType = 0; + vrLen = 1043; + vrLoc = 0; + }; + 4ECFB73C135F8619007FAB8D /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 4E6827E813594115001EB808 /* TopicsViewController.m */; + name = "TopicsViewController.m: 74"; + rLen = 0; + rLoc = 2567; + rType = 0; + vrLen = 996; + vrLoc = 2152; + }; + 4ECFB73D135F8619007FAB8D /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 4E6827E813594115001EB808 /* TopicsViewController.m */; + name = "TopicsViewController.m: 83"; + rLen = 0; + rLoc = 2567; + rType = 0; + vrLen = 934; + vrLoc = 2101; + }; + 4ECFB741135F86B1007FAB8D /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 4E6827E813594115001EB808 /* TopicsViewController.m */; + name = "TopicsViewController.m: 86"; + rLen = 0; + rLoc = 2567; + rType = 0; + vrLen = 755; + vrLoc = 2542; + }; + 4ECFB746135F874C007FAB8D /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 1D3623250D0F684500981E51 /* PicCastAppDelegate.m */; + name = "PicCastAppDelegate.m: 112"; + rLen = 0; + rLoc = 3520; + rType = 0; + vrLen = 942; + vrLoc = 1051; + }; + 4ECFB747135F874C007FAB8D /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 4E6827E813594115001EB808 /* TopicsViewController.m */; + name = "TopicsViewController.m: 236"; + rLen = 0; + rLoc = 7985; + rType = 0; + vrLen = 1448; + vrLoc = 7381; + }; + 4ECFB748135F87ED007FAB8D /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 1D3623250D0F684500981E51 /* PicCastAppDelegate.m */; + name = "PicCastAppDelegate.m: 112"; + rLen = 0; + rLoc = 3520; + rType = 0; + vrLen = 942; + vrLoc = 1051; + }; + 4ECFB749135F87ED007FAB8D /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 4E6827E713594115001EB808 /* TopicsViewController.h */; + name = "TopicsViewController.h: 27"; + rLen = 7; + rLoc = 874; + rType = 0; + vrLen = 906; + vrLoc = 148; + }; + 4ECFB74A135F87ED007FAB8D /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 4E6827E813594115001EB808 /* TopicsViewController.m */; + rLen = 7; + rLoc = 6219; + rType = 0; + }; + 4ECFB74B135F87ED007FAB8D /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 4E6827E813594115001EB808 /* TopicsViewController.m */; + name = "TopicsViewController.m: 205"; + rLen = 7; + rLoc = 6219; + rType = 0; + vrLen = 1072; + vrLoc = 6389; + }; + 4ECFB74E135F87F3007FAB8D /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 4E6827E813594115001EB808 /* TopicsViewController.m */; + name = "TopicsViewController.m: 86"; + rLen = 0; + rLoc = 2567; + rType = 0; + vrLen = 754; + vrLoc = 2460; + }; + 4ECFB781135F8CAA007FAB8D /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 4E6827E713594115001EB808 /* TopicsViewController.h */; + name = "TopicsViewController.h: 25"; + rLen = 0; + rLoc = 591; + rType = 0; + vrLen = 1105; + vrLoc = 0; + }; + 4ECFB782135F8CAA007FAB8D /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 4E6827E813594115001EB808 /* TopicsViewController.m */; + name = "TopicsViewController.m: 86"; + rLen = 0; + rLoc = 2567; + rType = 0; + vrLen = 773; + vrLoc = 2373; + }; + 4ECFB783135F8CAA007FAB8D /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 4E6827E813594115001EB808 /* TopicsViewController.m */; + name = "TopicsViewController.m: 22"; + rLen = 0; + rLoc = 469; + rType = 0; + vrLen = 934; + vrLoc = 0; + }; + 4ECFB786135F8D05007FAB8D /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 4E6827E813594115001EB808 /* TopicsViewController.m */; + name = "TopicsViewController.m: 22"; + rLen = 0; + rLoc = 469; + rType = 0; + vrLen = 934; + vrLoc = 0; + }; + 4ECFB787135F8D05007FAB8D /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 4E6827E713594115001EB808 /* TopicsViewController.h */; + name = "TopicsViewController.h: 24"; + rLen = 0; + rLoc = 591; + rType = 0; + vrLen = 1072; + vrLoc = 0; + }; + 4ECFB788135F8D11007FAB8D /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 4E6827E713594115001EB808 /* TopicsViewController.h */; + name = "TopicsViewController.h: 15"; + rLen = 0; + rLoc = 330; + rType = 0; + vrLen = 1067; + vrLoc = 0; + }; + 4ECFB78B135F8D65007FAB8D /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 4E6827E813594115001EB808 /* TopicsViewController.m */; + name = "TopicsViewController.m: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 1023; + vrLoc = 0; + }; + 4ECFB78C135F8D65007FAB8D /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 4E6827E713594115001EB808 /* TopicsViewController.h */; + name = "TopicsViewController.h: 15"; + rLen = 0; + rLoc = 330; + rType = 0; + vrLen = 1072; + vrLoc = 0; + }; + 4ECFB78D135F8D65007FAB8D /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 4E6827E713594115001EB808 /* TopicsViewController.h */; + name = "TopicsViewController.h: 15"; + rLen = 0; + rLoc = 330; + rType = 0; + vrLen = 1054; + vrLoc = 0; + }; + 4ECFB790135F8D7C007FAB8D /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 4E6827E713594115001EB808 /* TopicsViewController.h */; + name = "TopicsViewController.h: 15"; + rLen = 0; + rLoc = 330; + rType = 0; + vrLen = 1049; + vrLoc = 0; + }; + 4ECFB795135F8DE1007FAB8D /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 1D3623250D0F684500981E51 /* PicCastAppDelegate.m */; + name = "PicCastAppDelegate.m: 112"; + rLen = 0; + rLoc = 3520; + rType = 0; + vrLen = 942; + vrLoc = 1051; + }; + 4ECFB796135F8DE1007FAB8D /* XCBuildMessageTextBookmark */ = { + isa = PBXTextBookmark; + comments = "Request for member 'tableView' in something not a structure or union"; + fRef = 4E6827E813594115001EB808 /* TopicsViewController.m */; + fallbackIsa = XCBuildMessageTextBookmark; + rLen = 1; + rLoc = 26; + rType = 1; + }; + 4ECFB797135F8DE1007FAB8D /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 4E6827E813594115001EB808 /* TopicsViewController.m */; + name = "TopicsViewController.m: 27"; + rLen = 0; + rLoc = 543; + rType = 0; + vrLen = 526; + vrLoc = 289; + }; + 4ECFB798135F8DE1007FAB8D /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 4E6827E813594115001EB808 /* TopicsViewController.m */; + name = "TopicsViewController.m: 179"; + rLen = 7; + rLoc = 6219; + rType = 0; + vrLen = 1017; + vrLoc = 5810; + }; + 4ECFB79C135F902C007FAB8D /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 4E6827E813594115001EB808 /* TopicsViewController.m */; + name = "TopicsViewController.m: 27"; + rLen = 0; + rLoc = 543; + rType = 0; + vrLen = 526; + vrLoc = 289; + }; + 4ECFB79D135F902C007FAB8D /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 4E6827E813594115001EB808 /* TopicsViewController.m */; + name = "TopicsViewController.m: 177"; + rLen = 0; + rLoc = 6117; + rType = 0; + vrLen = 917; + vrLoc = 5965; + }; + 4ECFB79E135F902C007FAB8D /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 4EA95FD4135CE959009243EE /* PhotoViewController.m */; + rLen = 7; + rLoc = 522; + rType = 0; + }; + 4ECFB79F135F902C007FAB8D /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 4EA95FD4135CE959009243EE /* PhotoViewController.m */; + name = "PhotoViewController.m: 27"; + rLen = 0; + rLoc = 653; + rType = 0; + vrLen = 592; + vrLoc = 242; + }; + 4ECFB7A4135F9057007FAB8D /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 4E6827E713594115001EB808 /* TopicsViewController.h */; + name = "TopicsViewController.h: 15"; + rLen = 0; + rLoc = 330; + rType = 0; + vrLen = 1049; + vrLoc = 0; + }; + 4ECFB7A5135F9057007FAB8D /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 4E6827E813594115001EB808 /* TopicsViewController.m */; + name = "TopicsViewController.m: 71"; + rLen = 0; + rLoc = 2567; + rType = 0; + vrLen = 1104; + vrLoc = 2534; + }; + 4ECFB7A6135F9057007FAB8D /* XCBuildMessageTextBookmark */ = { + isa = PBXTextBookmark; + comments = "Request for member 'barColor' in something not a structure or union"; + fRef = 4EA95FD4135CE959009243EE /* PhotoViewController.m */; + fallbackIsa = XCBuildMessageTextBookmark; + rLen = 1; + rLoc = 26; + rType = 1; + }; + 4ECFB7A7135F9057007FAB8D /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 4EA95FD4135CE959009243EE /* PhotoViewController.m */; + name = "PhotoViewController.m: 27"; + rLen = 0; + rLoc = 531; + rType = 0; + vrLen = 725; + vrLoc = 148; + }; + 4ECFB7A9135F9057007FAB8D /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 4E6827E813594115001EB808 /* TopicsViewController.m */; + name = "TopicsViewController.m: 27"; + rLen = 0; + rLoc = 543; + rType = 0; + vrLen = 634; + vrLoc = 289; + }; + 4ECFB7AA135F9057007FAB8D /* XCBuildMessageTextBookmark */ = { + isa = PBXTextBookmark; + comments = "Request for member 'barColor' in something not a structure or union"; + fRef = 4EA95FD4135CE959009243EE /* PhotoViewController.m */; + fallbackIsa = XCBuildMessageTextBookmark; + rLen = 1; + rLoc = 26; + rType = 1; + }; + 4ECFB7AB135F9057007FAB8D /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 4EA95FD4135CE959009243EE /* PhotoViewController.m */; + name = "PhotoViewController.m: 27"; + rLen = 0; + rLoc = 581; + rType = 0; + vrLen = 419; + vrLoc = 319; + }; + 4ECFB7AC135F9057007FAB8D /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 4EA95FD4135CE959009243EE /* PhotoViewController.m */; + name = "PhotoViewController.m: 27"; + rLen = 0; + rLoc = 653; + rType = 0; + vrLen = 567; + vrLoc = 242; + }; + 4ECFB7AD135F90ED007FAB8D /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 4EA95FD4135CE959009243EE /* PhotoViewController.m */; + name = "PhotoViewController.m: 27"; + rLen = 0; + rLoc = 581; + rType = 0; + vrLen = 418; + vrLoc = 319; + }; + 4ECFB7AE135F90ED007FAB8D /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 4EA95FD4135CE959009243EE /* PhotoViewController.m */; + name = "PhotoViewController.m: 27"; + rLen = 0; + rLoc = 653; + rType = 0; + vrLen = 601; + vrLoc = 242; + }; + 4ECFB7B1135F90FA007FAB8D /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 4EA95FD4135CE959009243EE /* PhotoViewController.m */; + name = "PhotoViewController.m: 26"; + rLen = 0; + rLoc = 461; + rType = 0; + vrLen = 727; + vrLoc = 148; + }; + 4ECFB7B5135F917C007FAB8D /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 4EA95FD4135CE959009243EE /* PhotoViewController.m */; + name = "PhotoViewController.m: 27"; + rLen = 0; + rLoc = 581; + rType = 0; + vrLen = 721; + vrLoc = 148; + }; + 4ECFB7B9135F91C8007FAB8D /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 4EA95FD4135CE959009243EE /* PhotoViewController.m */; + name = "PhotoViewController.m: 27"; + rLen = 0; + rLoc = 653; + rType = 0; + vrLen = 678; + vrLoc = 148; + }; + 4ECFB7BF135F9234007FAB8D /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 4EA95FD4135CE959009243EE /* PhotoViewController.m */; + name = "PhotoViewController.m: 27"; + rLen = 0; + rLoc = 643; + rType = 0; + vrLen = 729; + vrLoc = 148; + }; + 4ECFB7C1135FC2E6007FAB8D /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 4EA95FD4135CE959009243EE /* PhotoViewController.m */; + name = "PhotoViewController.m: 27"; + rLen = 0; + rLoc = 581; + rType = 0; + vrLen = 464; + vrLoc = 319; + }; + 4ECFB7C2135FC2E6007FAB8D /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 4EA95FD4135CE959009243EE /* PhotoViewController.m */; + name = "PhotoViewController.m: 27"; + rLen = 0; + rLoc = 653; + rType = 0; + vrLen = 603; + vrLoc = 242; + }; + 4ECFB7C5135FC2FB007FAB8D /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 4EA95FD4135CE959009243EE /* PhotoViewController.m */; + name = "PhotoViewController.m: 27"; + rLen = 0; + rLoc = 643; + rType = 0; + vrLen = 739; + vrLoc = 0; + }; + 4ECFB7C6135FC2FB007FAB8D /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 1D3623250D0F684500981E51 /* PicCastAppDelegate.m */; + name = "PicCastAppDelegate.m: 112"; + rLen = 0; + rLoc = 3520; + rType = 0; + vrLen = 1031; + vrLoc = 3; + }; + 4ECFB7C7135FC2FB007FAB8D /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 1D3623250D0F684500981E51 /* PicCastAppDelegate.m */; + name = "PicCastAppDelegate.m: 11"; + rLen = 0; + rLoc = 223; + rType = 0; + vrLen = 1967; + vrLoc = 3; + }; 4ED6DB22135A194A00BEF0B7 /* HJManagedImageV.m */ = { uiCtxt = { sepNavIntBoundsRect = "{{0, 0}, {985, 3406}}"; @@ -976,6 +1611,12 @@ vrLoc = 4147; }; 4ED6DB6D135A2F5400BEF0B7 /* PicDumpViewController.h */ = { + isa = PBXFileReference; + fileEncoding = 4; + lastKnownFileType = sourcecode.c.h; + name = PicDumpViewController.h; + path = /Users/handler/Documents/code/xCode/PicCast/Classes/PicDumpViewController.h; + sourceTree = ""; uiCtxt = { sepNavIntBoundsRect = "{{0, 0}, {903, 421}}"; sepNavSelRange = "{285, 83}"; @@ -983,6 +1624,12 @@ }; }; 4ED6DB6E135A2F5400BEF0B7 /* PicDumpViewController.m */ = { + isa = PBXFileReference; + fileEncoding = 4; + lastKnownFileType = sourcecode.c.objc; + name = PicDumpViewController.m; + path = /Users/handler/Documents/code/xCode/PicCast/Classes/PicDumpViewController.m; + sourceTree = ""; uiCtxt = { sepNavFolds = "{\n c = (\n {\n l = \"number of sections\";\n r = \"{5375, 22}\";\n s = 1;\n },\n {\n l = \"number of rows in section\";\n r = \"{5566, 29}\";\n s = 1;\n },\n {\n l = DetailViewController;\n r = \"{7698, 24}\";\n s = 1;\n },\n {\n l = DetailViewController;\n r = \"{7749, 24}\";\n s = 1;\n },\n {\n l = \"Nib name\";\n r = \"{7799, 12}\";\n s = 1;\n }\n );\n r = \"{0, 8569}\";\n s = 0;\n}"; sepNavIntBoundsRect = "{{0, 0}, {1356, 3536}}"; @@ -1025,7 +1672,7 @@ fRef = 4E6827E713594115001EB808 /* TopicsViewController.h */; name = "TopicsViewController.h: 22"; rLen = 0; - rLoc = 750; + rLoc = 754; rType = 0; vrLen = 901; vrLoc = 0; diff --git a/PicCast.xcodeproj/project.pbxproj b/PicCast.xcodeproj/project.pbxproj index 63bff07..67b61d0 100644 --- a/PicCast.xcodeproj/project.pbxproj +++ b/PicCast.xcodeproj/project.pbxproj @@ -31,12 +31,17 @@ 4E68282F13594C48001EB808 /* Topic.m in Sources */ = {isa = PBXBuildFile; fileRef = 4E68282E13594C48001EB808 /* Topic.m */; }; 4E68298B13596FB9001EB808 /* TopicTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 4E68298A13596FB9001EB808 /* TopicTableViewCell.xib */; }; 4E6829F313597AF1001EB808 /* AsyncImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 4E6829F113597AF1001EB808 /* AsyncImageView.m */; }; - 4E759BA7135D1B5200171031 /* shoebox.512.png in Resources */ = {isa = PBXBuildFile; fileRef = 4E759BA6135D1B5200171031 /* shoebox.512.png */; }; - 4E759BB5135D28E300171031 /* PicCast.png in Resources */ = {isa = PBXBuildFile; fileRef = 4E759BB4135D28E300171031 /* PicCast.png */; }; 4E759C46135DCC4D00171031 /* iAd.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4E759C45135DCC4D00171031 /* iAd.framework */; }; 4EA95FCB135CE8C3009243EE /* PhotoSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 4EA95FC9135CE8C3009243EE /* PhotoSource.m */; }; 4EA95FD5135CE959009243EE /* PhotoViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 4EA95FD4135CE959009243EE /* PhotoViewController.m */; }; 4ECFB6D2135F5807007FAB8D /* AcidCowFeedburnerParser.m in Sources */ = {isa = PBXBuildFile; fileRef = 4ECFB6D0135F5807007FAB8D /* AcidCowFeedburnerParser.m */; }; + 4ECFB6E9135F6FDB007FAB8D /* PicCast.png in Resources */ = {isa = PBXBuildFile; fileRef = 4ECFB6E8135F6FDB007FAB8D /* PicCast.png */; }; + 4ECFB758135F8869007FAB8D /* PicCastTabBarIcons.category.30.png in Resources */ = {isa = PBXBuildFile; fileRef = 4ECFB752135F8869007FAB8D /* PicCastTabBarIcons.category.30.png */; }; + 4ECFB759135F8869007FAB8D /* PicCastTabBarIcons.category.30@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4ECFB753135F8869007FAB8D /* PicCastTabBarIcons.category.30@2x.png */; }; + 4ECFB75A135F8869007FAB8D /* PicCastTabBarIcons.fave.30.png in Resources */ = {isa = PBXBuildFile; fileRef = 4ECFB754135F8869007FAB8D /* PicCastTabBarIcons.fave.30.png */; }; + 4ECFB75B135F8869007FAB8D /* PicCastTabBarIcons.fave.30@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4ECFB755135F8869007FAB8D /* PicCastTabBarIcons.fave.30@2x.png */; }; + 4ECFB75C135F8869007FAB8D /* PicCastTabBarIcons.feeds.30.png in Resources */ = {isa = PBXBuildFile; fileRef = 4ECFB756135F8869007FAB8D /* PicCastTabBarIcons.feeds.30.png */; }; + 4ECFB75D135F8869007FAB8D /* PicCastTabBarIcons.feeds.30@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4ECFB757135F8869007FAB8D /* PicCastTabBarIcons.feeds.30@2x.png */; }; 4ED6DB26135A194A00BEF0B7 /* HJWeakMutableArray.m in Sources */ = {isa = PBXBuildFile; fileRef = 4ED6DB12135A194A00BEF0B7 /* HJWeakMutableArray.m */; }; 4ED6DB27135A194A00BEF0B7 /* HJObjManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4ED6DB14135A194A00BEF0B7 /* HJObjManager.m */; }; 4ED6DB28135A194A00BEF0B7 /* HJMOUserBase.m in Sources */ = {isa = PBXBuildFile; fileRef = 4ED6DB16135A194A00BEF0B7 /* HJMOUserBase.m */; }; @@ -46,7 +51,6 @@ 4ED6DB2C135A194A00BEF0B7 /* HJMOBigFileCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 4ED6DB1F135A194A00BEF0B7 /* HJMOBigFileCache.m */; }; 4ED6DB2D135A194A00BEF0B7 /* HJManagedImageV.m in Sources */ = {isa = PBXBuildFile; fileRef = 4ED6DB22135A194A00BEF0B7 /* HJManagedImageV.m */; }; 4ED6DB2E135A194A00BEF0B7 /* HJCircularBuffer.m in Sources */ = {isa = PBXBuildFile; fileRef = 4ED6DB24135A194A00BEF0B7 /* HJCircularBuffer.m */; }; - 4ED6DB70135A2F5400BEF0B7 /* PicDumpViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 4ED6DB6E135A2F5400BEF0B7 /* PicDumpViewController.m */; }; 4ED6DB71135A2F5400BEF0B7 /* PicDumpViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 4ED6DB6F135A2F5400BEF0B7 /* PicDumpViewController.xib */; }; 4ED6DC5D135B4E0700BEF0B7 /* gradient.png in Resources */ = {isa = PBXBuildFile; fileRef = 4ED6DC5C135B4E0700BEF0B7 /* gradient.png */; }; /* End PBXBuildFile section */ @@ -235,8 +239,6 @@ 4E68298A13596FB9001EB808 /* TopicTableViewCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = TopicTableViewCell.xib; sourceTree = ""; }; 4E6829F113597AF1001EB808 /* AsyncImageView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AsyncImageView.m; sourceTree = ""; }; 4E6829F213597AF1001EB808 /* AsyncImageView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AsyncImageView.h; sourceTree = ""; }; - 4E759BA6135D1B5200171031 /* shoebox.512.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = shoebox.512.png; sourceTree = ""; }; - 4E759BB4135D28E300171031 /* PicCast.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = PicCast.png; sourceTree = ""; }; 4E759C45135DCC4D00171031 /* iAd.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = iAd.framework; path = System/Library/Frameworks/iAd.framework; sourceTree = SDKROOT; }; 4EA95FC9135CE8C3009243EE /* PhotoSource.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PhotoSource.m; sourceTree = ""; }; 4EA95FCA135CE8C3009243EE /* PhotoSource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PhotoSource.h; sourceTree = ""; }; @@ -244,6 +246,13 @@ 4EA95FD4135CE959009243EE /* PhotoViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PhotoViewController.m; sourceTree = ""; }; 4ECFB6D0135F5807007FAB8D /* AcidCowFeedburnerParser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AcidCowFeedburnerParser.m; sourceTree = ""; }; 4ECFB6D1135F5807007FAB8D /* AcidCowFeedburnerParser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AcidCowFeedburnerParser.h; sourceTree = ""; }; + 4ECFB6E8135F6FDB007FAB8D /* PicCast.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = PicCast.png; sourceTree = ""; }; + 4ECFB752135F8869007FAB8D /* PicCastTabBarIcons.category.30.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = PicCastTabBarIcons.category.30.png; sourceTree = ""; }; + 4ECFB753135F8869007FAB8D /* PicCastTabBarIcons.category.30@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "PicCastTabBarIcons.category.30@2x.png"; sourceTree = ""; }; + 4ECFB754135F8869007FAB8D /* PicCastTabBarIcons.fave.30.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = PicCastTabBarIcons.fave.30.png; sourceTree = ""; }; + 4ECFB755135F8869007FAB8D /* PicCastTabBarIcons.fave.30@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "PicCastTabBarIcons.fave.30@2x.png"; sourceTree = ""; }; + 4ECFB756135F8869007FAB8D /* PicCastTabBarIcons.feeds.30.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = PicCastTabBarIcons.feeds.30.png; sourceTree = ""; }; + 4ECFB757135F8869007FAB8D /* PicCastTabBarIcons.feeds.30@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "PicCastTabBarIcons.feeds.30@2x.png"; sourceTree = ""; }; 4ED6DB12135A194A00BEF0B7 /* HJWeakMutableArray.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HJWeakMutableArray.m; sourceTree = ""; }; 4ED6DB13135A194A00BEF0B7 /* HJWeakMutableArray.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HJWeakMutableArray.h; sourceTree = ""; }; 4ED6DB14135A194A00BEF0B7 /* HJObjManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HJObjManager.m; sourceTree = ""; }; @@ -264,8 +273,6 @@ 4ED6DB23135A194A00BEF0B7 /* HJManagedImageV.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HJManagedImageV.h; sourceTree = ""; }; 4ED6DB24135A194A00BEF0B7 /* HJCircularBuffer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HJCircularBuffer.m; sourceTree = ""; }; 4ED6DB25135A194A00BEF0B7 /* HJCircularBuffer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HJCircularBuffer.h; sourceTree = ""; }; - 4ED6DB6D135A2F5400BEF0B7 /* PicDumpViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PicDumpViewController.h; sourceTree = ""; }; - 4ED6DB6E135A2F5400BEF0B7 /* PicDumpViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PicDumpViewController.m; sourceTree = ""; }; 4ED6DB6F135A2F5400BEF0B7 /* PicDumpViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = PicDumpViewController.xib; sourceTree = ""; }; 4ED6DC5C135B4E0700BEF0B7 /* gradient.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = gradient.png; sourceTree = SOURCE_ROOT; }; 8D1107310486CEB800E47090 /* PicCast-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "PicCast-Info.plist"; plistStructureDefinitionIdentifier = "com.apple.xcode.plist.structure-definition.iphone.info-plist"; sourceTree = ""; }; @@ -297,7 +304,7 @@ 080E96DDFE201D6D7F000001 /* Classes */ = { isa = PBXGroup; children = ( - 4E759BB4135D28E300171031 /* PicCast.png */, + 4ECFB6E8135F6FDB007FAB8D /* PicCast.png */, 4EA95FD3135CE959009243EE /* PhotoViewController.h */, 4EA95FD4135CE959009243EE /* PhotoViewController.m */, 4ED6DC5C135B4E0700BEF0B7 /* gradient.png */, @@ -313,8 +320,6 @@ 4E6827E713594115001EB808 /* TopicsViewController.h */, 4E6827E813594115001EB808 /* TopicsViewController.m */, 4E68298A13596FB9001EB808 /* TopicTableViewCell.xib */, - 4ED6DB6D135A2F5400BEF0B7 /* PicDumpViewController.h */, - 4ED6DB6E135A2F5400BEF0B7 /* PicDumpViewController.m */, 4ED6DB6F135A2F5400BEF0B7 /* PicDumpViewController.xib */, ); path = Classes; @@ -331,7 +336,7 @@ 29B97314FDCFA39411CA2CEA /* PicCast */ = { isa = PBXGroup; children = ( - 4E759BA6135D1B5200171031 /* shoebox.512.png */, + 4ECFB751135F8869007FAB8D /* Images */, 080E96DDFE201D6D7F000001 /* Classes */, 29B97315FDCFA39411CA2CEA /* Other Sources */, 29B97317FDCFA39411CA2CEA /* Resources */, @@ -468,6 +473,19 @@ name = Objects; sourceTree = ""; }; + 4ECFB751135F8869007FAB8D /* Images */ = { + isa = PBXGroup; + children = ( + 4ECFB752135F8869007FAB8D /* PicCastTabBarIcons.category.30.png */, + 4ECFB753135F8869007FAB8D /* PicCastTabBarIcons.category.30@2x.png */, + 4ECFB754135F8869007FAB8D /* PicCastTabBarIcons.fave.30.png */, + 4ECFB755135F8869007FAB8D /* PicCastTabBarIcons.fave.30@2x.png */, + 4ECFB756135F8869007FAB8D /* PicCastTabBarIcons.feeds.30.png */, + 4ECFB757135F8869007FAB8D /* PicCastTabBarIcons.feeds.30@2x.png */, + ); + path = Images; + sourceTree = ""; + }; 4ED6DB10135A192700BEF0B7 /* HJCacheClass */ = { isa = PBXGroup; children = ( @@ -689,8 +707,13 @@ 4E68298B13596FB9001EB808 /* TopicTableViewCell.xib in Resources */, 4ED6DB71135A2F5400BEF0B7 /* PicDumpViewController.xib in Resources */, 4ED6DC5D135B4E0700BEF0B7 /* gradient.png in Resources */, - 4E759BA7135D1B5200171031 /* shoebox.512.png in Resources */, - 4E759BB5135D28E300171031 /* PicCast.png in Resources */, + 4ECFB6E9135F6FDB007FAB8D /* PicCast.png in Resources */, + 4ECFB758135F8869007FAB8D /* PicCastTabBarIcons.category.30.png in Resources */, + 4ECFB759135F8869007FAB8D /* PicCastTabBarIcons.category.30@2x.png in Resources */, + 4ECFB75A135F8869007FAB8D /* PicCastTabBarIcons.fave.30.png in Resources */, + 4ECFB75B135F8869007FAB8D /* PicCastTabBarIcons.fave.30@2x.png in Resources */, + 4ECFB75C135F8869007FAB8D /* PicCastTabBarIcons.feeds.30.png in Resources */, + 4ECFB75D135F8869007FAB8D /* PicCastTabBarIcons.feeds.30@2x.png in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -718,7 +741,6 @@ 4ED6DB2C135A194A00BEF0B7 /* HJMOBigFileCache.m in Sources */, 4ED6DB2D135A194A00BEF0B7 /* HJManagedImageV.m in Sources */, 4ED6DB2E135A194A00BEF0B7 /* HJCircularBuffer.m in Sources */, - 4ED6DB70135A2F5400BEF0B7 /* PicDumpViewController.m in Sources */, 4EA95FCB135CE8C3009243EE /* PhotoSource.m in Sources */, 4EA95FD5135CE959009243EE /* PhotoViewController.m in Sources */, 4ECFB6D2135F5807007FAB8D /* AcidCowFeedburnerParser.m in Sources */, diff --git a/TopicsView.xib b/TopicsView.xib index 586eb8c..a3b943f 100644 --- a/TopicsView.xib +++ b/TopicsView.xib @@ -45,7 +45,7 @@ 274 - {320, 318} + {320, 319} 3 @@ -60,33 +60,6 @@ 22 22 - - - 306 - {{0, 317}, {320, 50}} - - NO - YES - 4 - YES - IBCocoaTouchFramework - - YES - - YES - ADBannerContentSize320x50 - ADBannerContentSize480x32 - - - - YES - - YES - ADBannerContentSizeLandscape - ADBannerContentSizePortrait - - - {320, 367} @@ -98,14 +71,6 @@ IBCocoaTouchFramework - - - - 1 - - IBCocoaTouchFramework - NO - @@ -134,7 +99,6 @@ YES - @@ -157,16 +121,6 @@ - - 13 - - - - - 14 - - - @@ -179,15 +133,10 @@ 1.IBPluginDependency 12.IBPluginDependency 12.IBViewBoundsToFrameTransform - 13.CustomClassName - 13.IBEditorWindowLastContentRect - 13.IBPluginDependency - 14.IBPluginDependency - 14.IBViewBoundsToFrameTransform YES - UIViewController + TopicsViewController UIResponder {{480, 355}, {320, 480}} com.apple.InterfaceBuilder.IBCocoaTouchPlugin @@ -195,13 +144,6 @@ P4AAAL+AAAAAAAAAw8+AAA - TopicsViewController - {{21, 342}, {320, 480}} - com.apple.InterfaceBuilder.IBCocoaTouchPlugin - com.apple.InterfaceBuilder.IBCocoaTouchPlugin - - P4AAAL+AAAAAAAAAw7SAAA - @@ -236,14 +178,6 @@ YES - - ADBannerView - UIView - - IBFrameworkSource - iAd.framework/Headers/ADBannerView.h - - NSObject -- cgit v1.2.3