summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormatt handler <matt.handler@gmail.com>2011-04-20 21:48:14 -0400
committermatt handler <matt.handler@gmail.com>2011-04-20 21:48:14 -0400
commitf2a2e1c1687ac7dbb9010b5f826486f77baeae77 (patch)
treeb6d2d82168f925329abb0d859de620966bcd2d7f
parent9d52266f823daf5cb83e3eebe1b9f57594bc9d4a (diff)
downloadpiccast-app-f2a2e1c1687ac7dbb9010b5f826486f77baeae77.tar.gz
piccast-app-f2a2e1c1687ac7dbb9010b5f826486f77baeae77.zip
icons, rename, title bar color change, tabbarviewcontroller links to shib for topicsviewcontroller instead of a rando
-rw-r--r--Classes/PhotoViewController.m3
-rw-r--r--Classes/PicCast.pngbin29647 -> 60435 bytes
-rw-r--r--Classes/PicCastAppDelegate.m1
-rw-r--r--Classes/PicDumpViewController.h22
-rw-r--r--Classes/PicDumpViewController.m273
-rw-r--r--Classes/TopicsViewController.h6
-rw-r--r--Classes/TopicsViewController.m45
-rw-r--r--Images/PicCastTabBarIcons.category.30.pngbin0 -> 408 bytes
-rw-r--r--Images/PicCastTabBarIcons.category.30@2x.pngbin0 -> 744 bytes
-rw-r--r--Images/PicCastTabBarIcons.fave.30.pngbin0 -> 370 bytes
-rw-r--r--Images/PicCastTabBarIcons.fave.30@2x.pngbin0 -> 539 bytes
-rw-r--r--Images/PicCastTabBarIcons.feeds.30.pngbin0 -> 2024 bytes
-rw-r--r--Images/PicCastTabBarIcons.feeds.30@2x.pngbin0 -> 1269 bytes
-rw-r--r--MainWindow.xib179
-rw-r--r--PicCast.xcodeproj/handler.mode1v359
-rw-r--r--PicCast.xcodeproj/handler.pbxuser731
-rw-r--r--PicCast.xcodeproj/project.pbxproj50
-rw-r--r--TopicsView.xib70
18 files changed, 906 insertions, 533 deletions
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
--- a/Classes/PicCast.png
+++ b/Classes/PicCast.png
Binary files 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 <Three20Network/TTURLRequestQueue.h>
-#import <iAd/iAD.h>
@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 <UIKit/UIKit.h>
-#import "Topic.h"
-//@class Topic;
-
-@interface PicDumpViewController : UIViewController <NSURLProtocolClient> {
- 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 <UIKit/UIKit.h>
#import "XMLParser.h"
#import "HJObjManager.h"
-#import "PicDumpViewController.h"
+//#import "PicDumpViewController.h"
#import "PhotoViewController.h"
@interface TopicsViewController : UITableViewController <XMLParserDelegate>{
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 <iTunesRSSParserDelegate> 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
--- /dev/null
+++ b/Images/PicCastTabBarIcons.category.30.png
Binary files differ
diff --git a/Images/PicCastTabBarIcons.category.30@2x.png b/Images/PicCastTabBarIcons.category.30@2x.png
new file mode 100644
index 0000000..2631c39
--- /dev/null
+++ b/Images/PicCastTabBarIcons.category.30@2x.png
Binary files differ
diff --git a/Images/PicCastTabBarIcons.fave.30.png b/Images/PicCastTabBarIcons.fave.30.png
new file mode 100644
index 0000000..2544dc2
--- /dev/null
+++ b/Images/PicCastTabBarIcons.fave.30.png
Binary files differ
diff --git a/Images/PicCastTabBarIcons.fave.30@2x.png b/Images/PicCastTabBarIcons.fave.30@2x.png
new file mode 100644
index 0000000..8976b67
--- /dev/null
+++ b/Images/PicCastTabBarIcons.fave.30@2x.png
Binary files differ
diff --git a/Images/PicCastTabBarIcons.feeds.30.png b/Images/PicCastTabBarIcons.feeds.30.png
new file mode 100644
index 0000000..705863e
--- /dev/null
+++ b/Images/PicCastTabBarIcons.feeds.30.png
Binary files differ
diff --git a/Images/PicCastTabBarIcons.feeds.30@2x.png b/Images/PicCastTabBarIcons.feeds.30@2x.png
new file mode 100644
index 0000000..1e11c9a
--- /dev/null
+++ b/Images/PicCastTabBarIcons.feeds.30@2x.png
Binary files differ
diff --git a/MainWindow.xib b/MainWindow.xib
index 7b42b0a..f1cbb4e 100644
--- a/MainWindow.xib
+++ b/MainWindow.xib
@@ -12,6 +12,7 @@
</object>
<object class="NSMutableArray" key="IBDocument.EditedObjectIDs">
<bool key="EncodedWithXMLCoder">YES</bool>
+ <integer value="108"/>
</object>
<object class="NSArray" key="IBDocument.PluginDependencies">
<bool key="EncodedWithXMLCoder">YES</bool>
@@ -62,53 +63,75 @@
</object>
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
<bool key="IBUIHorizontal">NO</bool>
- <object class="NSMutableArray" key="IBUIViewControllers">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="IBUINavigationController" id="108241923">
- <object class="IBUITabBarItem" key="IBUITabBarItem" id="417973806">
- <string key="IBUITitle">Item</string>
- <string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
- </object>
- <reference key="IBUIParentViewController" ref="1034742383"/>
- <object class="IBUISimulatedStatusBarMetrics" key="IBUISimulatedStatusBarMetrics"/>
- <object class="IBUISimulatedOrientationMetrics" key="IBUISimulatedOrientationMetrics">
- <int key="interfaceOrientation">1</int>
+ <object class="IBUINavigationController" key="IBUISelectedViewController" id="108241923">
+ <object class="IBUITabBarItem" key="IBUITabBarItem" id="417973806">
+ <string key="IBUITitle">Cast</string>
+ <object class="NSCustomResource" key="IBUIImage">
+ <string key="NSClassName">NSImage</string>
+ <string key="NSResourceName">PicCastTabBarIcons.feeds.30.png</string>
</object>
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
- <bool key="IBUIHorizontal">NO</bool>
- <object class="IBUINavigationBar" key="IBUINavigationBar" id="420128242">
- <nil key="NSNextResponder"/>
- <int key="NSvFlags">256</int>
- <string key="NSFrameSize">{0, 0}</string>
- <bool key="IBUIOpaque">NO</bool>
- <bool key="IBUIClipsSubviews">YES</bool>
- <bool key="IBUIMultipleTouchEnabled">YES</bool>
- <string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
+ <reference key="IBUITabBar"/>
+ </object>
+ <reference key="IBUIParentViewController" ref="1034742383"/>
+ <object class="IBUISimulatedStatusBarMetrics" key="IBUISimulatedStatusBarMetrics"/>
+ <object class="IBUISimulatedOrientationMetrics" key="IBUISimulatedOrientationMetrics">
+ <int key="interfaceOrientation">1</int>
+ </object>
+ <string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
+ <bool key="IBUIHorizontal">NO</bool>
+ <object class="IBUINavigationBar" key="IBUINavigationBar" id="420128242">
+ <nil key="NSNextResponder"/>
+ <int key="NSvFlags">256</int>
+ <string key="NSFrameSize">{0, 0}</string>
+ <bool key="IBUIOpaque">NO</bool>
+ <bool key="IBUIClipsSubviews">YES</bool>
+ <bool key="IBUIMultipleTouchEnabled">YES</bool>
+ <string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
+ <object class="NSColor" key="IBUITintColor">
+ <int key="NSColorSpace">1</int>
+ <bytes key="NSRGB">MC4wOTMzOTc2Mzk2OSAwLjE3NTQ0MzM4MTEgMC4yNTAzODczMTEAA</bytes>
</object>
- <object class="NSArray" key="IBUIViewControllers">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="IBUIViewController" id="1024858337">
- <object class="IBUITabBarItem" key="IBUITabBarItem" id="765670903">
- <string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
- <int key="IBUISystemItemIdentifier">10</int>
- </object>
- <object class="IBUINavigationItem" key="IBUINavigationItem" id="561719824">
- <string key="IBUITitle">Item</string>
+ </object>
+ <object class="NSMutableArray" key="IBUIViewControllers">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ <object class="IBUIViewController" id="1024858337">
+ <object class="IBUITabBarItem" key="IBUITabBarItem" id="765670903">
+ <string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
+ <int key="IBUISystemItemIdentifier">10</int>
+ </object>
+ <object class="IBUINavigationItem" key="IBUINavigationItem" id="561719824">
+ <reference key="IBUINavigationBar"/>
+ <string key="IBUITitle">PicCast</string>
+ <object class="IBUIBarButtonItem" key="IBUIRightBarButtonItem" id="769218652">
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
- </object>
- <reference key="IBUIParentViewController" ref="108241923"/>
- <object class="IBUISimulatedOrientationMetrics" key="IBUISimulatedOrientationMetrics">
- <int key="interfaceOrientation">1</int>
+ <int key="IBUIStyle">1</int>
+ <reference key="IBUINavigationItem" ref="561719824"/>
+ <int key="IBUISystemItemIdentifier">4</int>
</object>
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
- <bool key="IBUIHorizontal">NO</bool>
</object>
+ <reference key="IBUIParentViewController" ref="108241923"/>
+ <object class="IBUISimulatedOrientationMetrics" key="IBUISimulatedOrientationMetrics">
+ <int key="interfaceOrientation">1</int>
+ </object>
+ <string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
+ <bool key="IBUIHorizontal">NO</bool>
</object>
</object>
+ </object>
+ <object class="NSMutableArray" key="IBUIViewControllers">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ <reference ref="108241923"/>
<object class="IBUIViewController" id="268481961">
<object class="IBUITabBarItem" key="IBUITabBarItem" id="807309489">
+ <string key="IBUITitle">Category</string>
+ <object class="NSCustomResource" key="IBUIImage">
+ <string key="NSClassName">NSImage</string>
+ <string key="NSResourceName">PicCastTabBarIcons.category.30.png</string>
+ </object>
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
- <int key="IBUISystemItemIdentifier">11</int>
+ <reference key="IBUITabBar"/>
</object>
<reference key="IBUIParentViewController" ref="1034742383"/>
<string key="IBUINibName">SecondView</string>
@@ -120,8 +143,13 @@
</object>
<object class="IBUIViewController" id="427909037">
<object class="IBUITabBarItem" key="IBUITabBarItem" id="327943408">
+ <string key="IBUITitle">Faves</string>
+ <object class="NSCustomResource" key="IBUIImage">
+ <string key="NSClassName">NSImage</string>
+ <string key="NSResourceName">PicCastTabBarIcons.fave.30.png</string>
+ </object>
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
- <int key="IBUISystemItemIdentifier">8</int>
+ <reference key="IBUITabBar"/>
</object>
<reference key="IBUIToolbarItems" ref="0"/>
<reference key="IBUIParentViewController" ref="1034742383"/>
@@ -134,7 +162,8 @@
<object class="IBUIViewController" id="491798477">
<object class="IBUITabBarItem" key="IBUITabBarItem" id="217159837">
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
- <int key="IBUISystemItemIdentifier">0</int>
+ <reference key="IBUITabBar"/>
+ <int key="IBUISystemItemIdentifier">8</int>
</object>
<reference key="IBUIToolbarItems" ref="0"/>
<reference key="IBUIParentViewController" ref="1034742383"/>
@@ -318,8 +347,17 @@
<object class="IBObjectRecord">
<int key="objectID">135</int>
<reference key="object" ref="561719824"/>
+ <object class="NSMutableArray" key="children">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ <reference ref="769218652"/>
+ </object>
<reference key="parent" ref="1024858337"/>
</object>
+ <object class="IBObjectRecord">
+ <int key="objectID">136</int>
+ <reference key="object" ref="769218652"/>
+ <reference key="parent" ref="561719824"/>
+ </object>
</object>
</object>
<object class="NSMutableDictionary" key="flattenedProperties">
@@ -342,6 +380,7 @@
<string>129.IBEditorWindowLastContentRect</string>
<string>129.IBPluginDependency</string>
<string>131.IBPluginDependency</string>
+ <string>136.IBPluginDependency</string>
<string>2.IBAttributePlaceholdersKey</string>
<string>2.IBEditorWindowLastContentRect</string>
<string>2.IBPluginDependency</string>
@@ -352,7 +391,7 @@
<bool key="EncodedWithXMLCoder">YES</bool>
<string>UIApplication</string>
<string>UIResponder</string>
- <string>{{499, 353}, {320, 480}}</string>
+ <string>{{488, 348}, {320, 480}}</string>
<string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
<string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
<object class="NSAffineTransform">
@@ -368,6 +407,7 @@
<string>{{0, 354}, {320, 480}}</string>
<string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
<string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
<object class="NSMutableDictionary">
<bool key="EncodedWithXMLCoder">YES</bool>
<reference key="dict.sortedKeys" ref="0"/>
@@ -397,28 +437,12 @@
</object>
</object>
<nil key="sourceID"/>
- <int key="maxID">135</int>
+ <int key="maxID">136</int>
</object>
<object class="IBClassDescriber" key="IBDocument.Classes">
<object class="NSMutableArray" key="referencedPartialClassDescriptions">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="IBPartialClassDescription">
- <string key="className">TopicsViewController</string>
- <string key="superclassName">UITableViewController</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBProjectSource</string>
- <string key="minorKey">Classes/TopicsViewController.h</string>
- </object>
- </object>
- <object class="IBPartialClassDescription">
- <string key="className">UIWindow</string>
- <string key="superclassName">UIView</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBUserSource</string>
- <string key="minorKey"/>
- </object>
- </object>
- <object class="IBPartialClassDescription">
<string key="className">PicCastAppDelegate</string>
<string key="superclassName">NSObject</string>
<object class="NSMutableDictionary" key="outlets">
@@ -465,6 +489,22 @@
<string key="minorKey">Classes/PicCastAppDelegate.h</string>
</object>
</object>
+ <object class="IBPartialClassDescription">
+ <string key="className">TopicsViewController</string>
+ <string key="superclassName">UITableViewController</string>
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
+ <string key="majorKey">IBProjectSource</string>
+ <string key="minorKey">Classes/TopicsViewController.h</string>
+ </object>
+ </object>
+ <object class="IBPartialClassDescription">
+ <string key="className">UIWindow</string>
+ <string key="superclassName">UIView</string>
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
+ <string key="majorKey">IBUserSource</string>
+ <string key="minorKey"/>
+ </object>
+ </object>
</object>
<object class="NSMutableArray" key="referencedPartialClassDescriptionsV3.2+">
<bool key="EncodedWithXMLCoder">YES</bool>
@@ -542,6 +582,20 @@
<string key="className">NSObject</string>
<object class="IBClassDescriptionSource" key="sourceIdentifier">
<string key="majorKey">IBFrameworkSource</string>
+ <string key="minorKey">QuartzCore.framework/Headers/CAAnimation.h</string>
+ </object>
+ </object>
+ <object class="IBPartialClassDescription">
+ <string key="className">NSObject</string>
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
+ <string key="majorKey">IBFrameworkSource</string>
+ <string key="minorKey">QuartzCore.framework/Headers/CALayer.h</string>
+ </object>
+ </object>
+ <object class="IBPartialClassDescription">
+ <string key="className">NSObject</string>
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
+ <string key="majorKey">IBFrameworkSource</string>
<string key="minorKey">UIKit.framework/Headers/UIAccessibility.h</string>
</object>
</object>
@@ -732,6 +786,21 @@
<bool key="IBDocument.PluginDeclaredDependenciesTrackSystemTargetVersion">YES</bool>
<string key="IBDocument.LastKnownRelativeProjectPath">PicCast.xcodeproj</string>
<int key="IBDocument.defaultPropertyAccessControl">3</int>
+ <object class="NSMutableDictionary" key="IBDocument.LastKnownImageSizes">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ <object class="NSArray" key="dict.sortedKeys">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ <string>PicCastTabBarIcons.category.30.png</string>
+ <string>PicCastTabBarIcons.fave.30.png</string>
+ <string>PicCastTabBarIcons.feeds.30.png</string>
+ </object>
+ <object class="NSMutableArray" key="dict.values">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ <string>{30, 30}</string>
+ <string>{30, 30}</string>
+ <string>{30, 30}</string>
+ </object>
+ </object>
<string key="IBCocoaTouchPluginVersion">132</string>
</data>
</archive>
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 @@
<key>Layout</key>
<array>
<dict>
- <key>BecomeActive</key>
- <true/>
<key>ContentConfiguration</key>
<dict>
<key>PBXBottomSmartGroupGIDs</key>
@@ -276,13 +274,13 @@
<key>PBXSmartGroupTreeModuleOutlineStateSelectionKey</key>
<array>
<array>
- <integer>15</integer>
+ <integer>25</integer>
<integer>2</integer>
<integer>0</integer>
</array>
</array>
<key>PBXSmartGroupTreeModuleOutlineStateVisibleRectKey</key>
- <string>{{0, 0}, {282, 667}}</string>
+ <string>{{0, 34}, {282, 667}}</string>
</dict>
<key>PBXTopSmartGroupGIDs</key>
<array/>
@@ -301,7 +299,7 @@
<real>282</real>
</array>
<key>RubberWindowFrame</key>
- <string>85 138 1268 726 0 0 1440 878 </string>
+ <string>50 128 1268 726 0 0 1440 878 </string>
</dict>
<key>Module</key>
<string>PBXSmartGroupTreeModule</string>
@@ -312,6 +310,8 @@
<key>Dock</key>
<array>
<dict>
+ <key>BecomeActive</key>
+ <true/>
<key>ContentConfiguration</key>
<dict>
<key>PBXProjectModuleGUID</key>
@@ -329,7 +329,7 @@
<key>_historyCapacity</key>
<integer>0</integer>
<key>bookmark</key>
- <string>4ECFB6E2135F58D2007FAB8D</string>
+ <string>4ECFB7C7135FC2FB007FAB8D</string>
<key>history</key>
<array>
<string>4E68286F1359595F001EB808</string>
@@ -347,14 +347,15 @@
<string>4EA96020135CF43B009243EE</string>
<string>4EA96027135CF455009243EE</string>
<string>4E759BF4135D31C500171031</string>
- <string>4E759BF8135D31C500171031</string>
- <string>4E759BFA135D31C500171031</string>
<string>4E759C0D135D324000171031</string>
<string>4E759C0E135D324000171031</string>
- <string>4E759C33135D3B5500171031</string>
- <string>4E759C4A135DCD1400171031</string>
<string>4ECFB6E1135F58D2007FAB8D</string>
- <string>4ECFB6D7135F58BF007FAB8D</string>
+ <string>4ECFB724135F80A7007FAB8D</string>
+ <string>4ECFB73A135F8619007FAB8D</string>
+ <string>4ECFB7A4135F9057007FAB8D</string>
+ <string>4ECFB7A5135F9057007FAB8D</string>
+ <string>4ECFB7C5135FC2FB007FAB8D</string>
+ <string>4ECFB7C6135FC2FB007FAB8D</string>
</array>
</dict>
<key>SplitCount</key>
@@ -366,14 +367,14 @@
<key>GeometryConfiguration</key>
<dict>
<key>Frame</key>
- <string>{{0, 0}, {964, 464}}</string>
+ <string>{{0, 0}, {964, 680}}</string>
<key>RubberWindowFrame</key>
- <string>85 138 1268 726 0 0 1440 878 </string>
+ <string>50 128 1268 726 0 0 1440 878 </string>
</dict>
<key>Module</key>
<string>PBXNavigatorGroup</string>
<key>Proportion</key>
- <string>464pt</string>
+ <string>680pt</string>
</dict>
<dict>
<key>ContentConfiguration</key>
@@ -386,14 +387,14 @@
<key>GeometryConfiguration</key>
<dict>
<key>Frame</key>
- <string>{{0, 469}, {964, 216}}</string>
+ <string>{{0, 685}, {964, 0}}</string>
<key>RubberWindowFrame</key>
- <string>85 138 1268 726 0 0 1440 878 </string>
+ <string>50 128 1268 726 0 0 1440 878 </string>
</dict>
<key>Module</key>
<string>XCDetailModule</string>
<key>Proportion</key>
- <string>216pt</string>
+ <string>0pt</string>
</dict>
</array>
<key>Proportion</key>
@@ -552,15 +553,17 @@
<integer>5</integer>
<key>WindowOrderList</key>
<array>
- <string>4ECFB6E6135F58D2007FAB8D</string>
+ <string>4ECFB7C8135FC2FB007FAB8D</string>
+ <string>1C530D57069F1CE1000CFCEE</string>
+ <string>4ECFB727135F80A7007FAB8D</string>
<string>4ECFB6E7135F58D2007FAB8D</string>
- <string>1C78EAAD065D492600B07095</string>
<string>1CD10A99069EF8BA00B06720</string>
<string>4E6827C813593DE3001EB808</string>
+ <string>1C78EAAD065D492600B07095</string>
<string>/Users/handler/Documents/code/xCode/PicCast/PicCast.xcodeproj</string>
</array>
<key>WindowString</key>
- <string>85 138 1268 726 0 0 1440 878 </string>
+ <string>50 128 1268 726 0 0 1440 878 </string>
<key>WindowToolsV3</key>
<array>
<dict>
@@ -576,12 +579,14 @@
<key>Dock</key>
<array>
<dict>
+ <key>BecomeActive</key>
+ <true/>
<key>ContentConfiguration</key>
<dict>
<key>PBXProjectModuleGUID</key>
<string>1CD0528F0623707200166675</string>
<key>PBXProjectModuleLabel</key>
- <string>PicCastAppDelegate.m</string>
+ <string>PhotoViewController.m</string>
<key>StatusBarVisibility</key>
<true/>
</dict>
@@ -598,8 +603,6 @@
<string>262pt</string>
</dict>
<dict>
- <key>BecomeActive</key>
- <true/>
<key>ContentConfiguration</key>
<dict>
<key>PBXProjectModuleGUID</key>
@@ -799,7 +802,7 @@
<key>PBXProjectModuleGUID</key>
<string>1CDD528C0622207200134675</string>
<key>PBXProjectModuleLabel</key>
- <string>TopicsViewController.m</string>
+ <string>PhotoViewController.m</string>
<key>StatusBarVisibility</key>
<true/>
</dict>
@@ -857,8 +860,8 @@
<key>TableOfContents</key>
<array>
<string>1C530D57069F1CE1000CFCEE</string>
- <string>4E759C1A135D329500171031</string>
- <string>4E759C1B135D329500171031</string>
+ <string>4ECFB71F135F80A0007FAB8D</string>
+ <string>4ECFB720135F80A0007FAB8D</string>
<string>1CDD528C0622207200134675</string>
<string>1CD0528E0623707200166675</string>
</array>
@@ -886,6 +889,8 @@
<key>Dock</key>
<array>
<dict>
+ <key>BecomeActive</key>
+ <true/>
<key>ContentConfiguration</key>
<dict>
<key>PBXProjectModuleGUID</key>
@@ -931,7 +936,7 @@
<key>WindowToolGUID</key>
<string>1C78EAAD065D492600B07095</string>
<key>WindowToolIsVisible</key>
- <false/>
+ <true/>
</dict>
<dict>
<key>Identifier</key>
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 = "<absolute>";
+ };
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 = "<absolute>";
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 = "<absolute>";
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 = "<group>"; };
4E6829F113597AF1001EB808 /* AsyncImageView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AsyncImageView.m; sourceTree = "<group>"; };
4E6829F213597AF1001EB808 /* AsyncImageView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AsyncImageView.h; sourceTree = "<group>"; };
- 4E759BA6135D1B5200171031 /* shoebox.512.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = shoebox.512.png; sourceTree = "<group>"; };
- 4E759BB4135D28E300171031 /* PicCast.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = PicCast.png; sourceTree = "<group>"; };
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 = "<group>"; };
4EA95FCA135CE8C3009243EE /* PhotoSource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PhotoSource.h; sourceTree = "<group>"; };
@@ -244,6 +246,13 @@
4EA95FD4135CE959009243EE /* PhotoViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PhotoViewController.m; sourceTree = "<group>"; };
4ECFB6D0135F5807007FAB8D /* AcidCowFeedburnerParser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AcidCowFeedburnerParser.m; sourceTree = "<group>"; };
4ECFB6D1135F5807007FAB8D /* AcidCowFeedburnerParser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AcidCowFeedburnerParser.h; sourceTree = "<group>"; };
+ 4ECFB6E8135F6FDB007FAB8D /* PicCast.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = PicCast.png; sourceTree = "<group>"; };
+ 4ECFB752135F8869007FAB8D /* PicCastTabBarIcons.category.30.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = PicCastTabBarIcons.category.30.png; sourceTree = "<group>"; };
+ 4ECFB753135F8869007FAB8D /* PicCastTabBarIcons.category.30@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "PicCastTabBarIcons.category.30@2x.png"; sourceTree = "<group>"; };
+ 4ECFB754135F8869007FAB8D /* PicCastTabBarIcons.fave.30.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = PicCastTabBarIcons.fave.30.png; sourceTree = "<group>"; };
+ 4ECFB755135F8869007FAB8D /* PicCastTabBarIcons.fave.30@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "PicCastTabBarIcons.fave.30@2x.png"; sourceTree = "<group>"; };
+ 4ECFB756135F8869007FAB8D /* PicCastTabBarIcons.feeds.30.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = PicCastTabBarIcons.feeds.30.png; sourceTree = "<group>"; };
+ 4ECFB757135F8869007FAB8D /* PicCastTabBarIcons.feeds.30@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "PicCastTabBarIcons.feeds.30@2x.png"; sourceTree = "<group>"; };
4ED6DB12135A194A00BEF0B7 /* HJWeakMutableArray.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HJWeakMutableArray.m; sourceTree = "<group>"; };
4ED6DB13135A194A00BEF0B7 /* HJWeakMutableArray.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HJWeakMutableArray.h; sourceTree = "<group>"; };
4ED6DB14135A194A00BEF0B7 /* HJObjManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HJObjManager.m; sourceTree = "<group>"; };
@@ -264,8 +273,6 @@
4ED6DB23135A194A00BEF0B7 /* HJManagedImageV.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HJManagedImageV.h; sourceTree = "<group>"; };
4ED6DB24135A194A00BEF0B7 /* HJCircularBuffer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HJCircularBuffer.m; sourceTree = "<group>"; };
4ED6DB25135A194A00BEF0B7 /* HJCircularBuffer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HJCircularBuffer.h; sourceTree = "<group>"; };
- 4ED6DB6D135A2F5400BEF0B7 /* PicDumpViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PicDumpViewController.h; sourceTree = "<group>"; };
- 4ED6DB6E135A2F5400BEF0B7 /* PicDumpViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PicDumpViewController.m; sourceTree = "<group>"; };
4ED6DB6F135A2F5400BEF0B7 /* PicDumpViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = PicDumpViewController.xib; sourceTree = "<group>"; };
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 = "<group>"; };
@@ -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 = "<group>";
};
+ 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 = "<group>";
+ };
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 @@
<object class="IBUITableView" id="469960320">
<reference key="NSNextResponder" ref="191373211"/>
<int key="NSvFlags">274</int>
- <string key="NSFrameSize">{320, 318}</string>
+ <string key="NSFrameSize">{320, 319}</string>
<reference key="NSSuperview" ref="191373211"/>
<object class="NSColor" key="IBUIBackgroundColor" id="305766265">
<int key="NSColorSpace">3</int>
@@ -60,33 +60,6 @@
<float key="IBUISectionHeaderHeight">22</float>
<float key="IBUISectionFooterHeight">22</float>
</object>
- <object class="IBADBannerView" id="1067502545">
- <reference key="NSNextResponder" ref="191373211"/>
- <int key="NSvFlags">306</int>
- <string key="NSFrame">{{0, 317}, {320, 50}}</string>
- <reference key="NSSuperview" ref="191373211"/>
- <bool key="IBUIOpaque">NO</bool>
- <bool key="IBUIClipsSubviews">YES</bool>
- <int key="IBUIContentMode">4</int>
- <bool key="IBUIMultipleTouchEnabled">YES</bool>
- <string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
- <object class="NSMutableSet" key="IBADRequiredContentSizeIdentifiers">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="NSArray" key="set.sortedObjects">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <string>ADBannerContentSize320x50</string>
- <string>ADBannerContentSize480x32</string>
- </object>
- </object>
- <object class="NSSet" key="IBADModernRequiredContentSizeIdentifiers">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="NSArray" key="set.sortedObjects">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <string>ADBannerContentSizeLandscape</string>
- <string>ADBannerContentSizePortrait</string>
- </object>
- </object>
- </object>
</object>
<string key="NSFrameSize">{320, 367}</string>
<reference key="NSSuperview"/>
@@ -98,14 +71,6 @@
<object class="IBUISimulatedTabBarMetrics" key="IBUISimulatedBottomBarMetrics"/>
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
</object>
- <object class="IBUIViewController" id="349077454">
- <object class="IBUISimulatedStatusBarMetrics" key="IBUISimulatedStatusBarMetrics"/>
- <object class="IBUISimulatedOrientationMetrics" key="IBUISimulatedOrientationMetrics">
- <int key="interfaceOrientation">1</int>
- </object>
- <string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
- <bool key="IBUIHorizontal">NO</bool>
- </object>
</object>
<object class="IBObjectContainer" key="IBDocument.Objects">
<object class="NSMutableArray" key="connectionRecords">
@@ -134,7 +99,6 @@
<object class="NSMutableArray" key="children">
<bool key="EncodedWithXMLCoder">YES</bool>
<reference ref="469960320"/>
- <reference ref="1067502545"/>
</object>
<reference key="parent" ref="0"/>
</object>
@@ -157,16 +121,6 @@
</object>
<reference key="parent" ref="191373211"/>
</object>
- <object class="IBObjectRecord">
- <int key="objectID">13</int>
- <reference key="object" ref="349077454"/>
- <reference key="parent" ref="0"/>
- </object>
- <object class="IBObjectRecord">
- <int key="objectID">14</int>
- <reference key="object" ref="1067502545"/>
- <reference key="parent" ref="191373211"/>
- </object>
</object>
</object>
<object class="NSMutableDictionary" key="flattenedProperties">
@@ -179,15 +133,10 @@
<string>1.IBPluginDependency</string>
<string>12.IBPluginDependency</string>
<string>12.IBViewBoundsToFrameTransform</string>
- <string>13.CustomClassName</string>
- <string>13.IBEditorWindowLastContentRect</string>
- <string>13.IBPluginDependency</string>
- <string>14.IBPluginDependency</string>
- <string>14.IBViewBoundsToFrameTransform</string>
</object>
<object class="NSMutableArray" key="dict.values">
<bool key="EncodedWithXMLCoder">YES</bool>
- <string>UIViewController</string>
+ <string>TopicsViewController</string>
<string>UIResponder</string>
<string>{{480, 355}, {320, 480}}</string>
<string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
@@ -195,13 +144,6 @@
<object class="NSAffineTransform">
<bytes key="NSTransformStruct">P4AAAL+AAAAAAAAAw8+AAA</bytes>
</object>
- <string>TopicsViewController</string>
- <string>{{21, 342}, {320, 480}}</string>
- <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
- <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
- <object class="NSAffineTransform">
- <bytes key="NSTransformStruct">P4AAAL+AAAAAAAAAw7SAAA</bytes>
- </object>
</object>
</object>
<object class="NSMutableDictionary" key="unlocalizedProperties">
@@ -237,14 +179,6 @@
<object class="NSMutableArray" key="referencedPartialClassDescriptionsV3.2+">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="IBPartialClassDescription">
- <string key="className">ADBannerView</string>
- <string key="superclassName">UIView</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBFrameworkSource</string>
- <string key="minorKey">iAd.framework/Headers/ADBannerView.h</string>
- </object>
- </object>
- <object class="IBPartialClassDescription">
<string key="className">NSObject</string>
<object class="IBClassDescriptionSource" key="sourceIdentifier">
<string key="majorKey">IBFrameworkSource</string>