mirror of
https://github.com/viq/NewsBlur.git
synced 2025-09-18 21:43:31 +00:00
refactoring the share view controller and other bug fixes
This commit is contained in:
parent
a868a761cd
commit
2b299ec197
21 changed files with 1704 additions and 10281 deletions
|
@ -392,7 +392,6 @@
|
|||
// test for tryfeed
|
||||
if (appDelegate.inFindingStoryMode && appDelegate.tryFeedStoryId) {
|
||||
for (int i = 0; i < appDelegate.activeFeedStories.count; i++) {
|
||||
NSLog(@"i is %i", i);
|
||||
NSString *storyIdStr = [[appDelegate.activeFeedStories objectAtIndex:i] objectForKey:@"id"];
|
||||
if ([storyIdStr isEqualToString:appDelegate.tryFeedStoryId]) {
|
||||
NSDictionary *feed = [appDelegate.activeFeedStories objectAtIndex:i];
|
||||
|
|
|
@ -251,6 +251,10 @@
|
|||
[self.sitesSearchBar resignFirstResponder];
|
||||
}
|
||||
|
||||
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
|
||||
[self.sitesSearchBar resignFirstResponder];
|
||||
}
|
||||
|
||||
- (void)tableView:(UITableView *)tableView accessoryButtonTappedForRowWithIndexPath:(NSIndexPath *)indexPath {
|
||||
// NSInteger currentRow = indexPath.row;
|
||||
// int row = currentRow;
|
||||
|
|
|
@ -379,6 +379,10 @@ viewForHeaderInSection:(NSInteger)section {
|
|||
[self.friendSearchBar resignFirstResponder];
|
||||
}
|
||||
|
||||
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
|
||||
[self.friendSearchBar resignFirstResponder];
|
||||
}
|
||||
|
||||
- (void)tableView:(UITableView *)tableView accessoryButtonTappedForRowWithIndexPath:(NSIndexPath *)indexPath {
|
||||
NSInteger currentRow = indexPath.row;
|
||||
int row = currentRow;
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -88,9 +88,9 @@
|
|||
if ([category isEqualToString:@"follow"]) {
|
||||
txt = [NSString stringWithFormat:@"%@ is now following you.", username];
|
||||
} else if ([category isEqualToString:@"comment_reply"]) {
|
||||
txt = [NSString stringWithFormat:@"%@ replied to your comment:\n%@", username, comment];
|
||||
txt = [NSString stringWithFormat:@"%@ replied to your comment on %@:\n%@", username, title, comment];
|
||||
} else if ([category isEqualToString:@"reply_reply"]) {
|
||||
txt = [NSString stringWithFormat:@"%@ replied to your reply:\n%@", username, comment];
|
||||
txt = [NSString stringWithFormat:@"%@ replied to your reply on %@:\n%@", username, title, comment];
|
||||
} else if ([category isEqualToString:@"story_reshare"]) {
|
||||
if ([content isEqualToString:@""] || content == nil) {
|
||||
txt = [NSString stringWithFormat:@"%@ re-shared %@.", username, title];
|
||||
|
|
|
@ -28,6 +28,7 @@
|
|||
|
||||
@property (nonatomic, strong) UINavigationController *masterNavigationController;
|
||||
@property (nonatomic, strong) UINavigationController *storyNavigationController;
|
||||
@property (nonatomic, strong) UINavigationController *shareNavigationController;
|
||||
@property (nonatomic, strong) NewsBlurViewController *feedsViewController;
|
||||
@property (nonatomic, strong) FeedDetailViewController *feedDetailViewController;
|
||||
@property (nonatomic, strong) DashboardViewController *dashboardViewController;
|
||||
|
@ -49,6 +50,7 @@
|
|||
|
||||
@synthesize appDelegate;
|
||||
@synthesize masterNavigationController;
|
||||
@synthesize shareNavigationController;
|
||||
@synthesize feedsViewController;
|
||||
@synthesize feedDetailViewController;
|
||||
@synthesize dashboardViewController;
|
||||
|
@ -105,6 +107,9 @@
|
|||
UINavigationController *nav = [[UINavigationController alloc] initWithRootViewController:self.storyDetailViewController];
|
||||
self.storyNavigationController = nav;
|
||||
|
||||
UINavigationController *shareNav = [[UINavigationController alloc] initWithRootViewController:self.shareViewController];
|
||||
self.shareNavigationController = shareNav;
|
||||
|
||||
// set default y coordinate for feedDetailY from saved preferences
|
||||
NSUserDefaults *userPreferences = [NSUserDefaults standardUserDefaults];
|
||||
NSInteger savedStoryTitlesYCoordinate = [userPreferences integerForKey:@"storyTitlesYCoordinate"];
|
||||
|
@ -519,14 +524,15 @@
|
|||
self.isSharingStory = YES;
|
||||
|
||||
// adding shareViewController
|
||||
[self addChildViewController:self.shareViewController];
|
||||
[self.view insertSubview:self.shareViewController.view aboveSubview:self.storyNavigationController.view];
|
||||
[self.shareViewController didMoveToParentViewController:self];
|
||||
|
||||
self.shareViewController.view.frame = CGRectMake(self.storyNavigationController.view.frame.origin.x,
|
||||
vb.size.height,
|
||||
self.storyDetailViewController.view.frame.size.width,
|
||||
NB_DEFAULT_SHARE_HEIGHT);
|
||||
[self addChildViewController:self.shareNavigationController];
|
||||
[self.view insertSubview:self.shareNavigationController.view aboveSubview:self.storyNavigationController.view];
|
||||
[self.shareNavigationController didMoveToParentViewController:self];
|
||||
|
||||
self.shareViewController.view.frame = CGRectZero;
|
||||
self.shareNavigationController.view.frame = CGRectMake(self.storyNavigationController.view.frame.origin.x,
|
||||
vb.size.height,
|
||||
self.storyDetailViewController.view.frame.size.width,
|
||||
NB_DEFAULT_SHARE_HEIGHT);
|
||||
[self.shareViewController.commentField becomeFirstResponder];
|
||||
}
|
||||
|
||||
|
@ -557,12 +563,12 @@
|
|||
}
|
||||
|
||||
[UIView animateWithDuration:NB_DEFAULT_SLIDER_INTERVAL animations:^{
|
||||
self.shareViewController.view.frame = CGRectMake(self.storyNavigationController.view.frame.origin.x,
|
||||
self.shareNavigationController.view.frame = CGRectMake(self.storyNavigationController.view.frame.origin.x,
|
||||
vb.size.height,
|
||||
self.storyNavigationController.view.frame.size.width,
|
||||
NB_DEFAULT_SHARE_HEIGHT);
|
||||
} completion:^(BOOL finished) {
|
||||
[self.shareViewController.view removeFromSuperview];
|
||||
[self.shareNavigationController.view removeFromSuperview];
|
||||
}];
|
||||
}
|
||||
}
|
||||
|
@ -627,13 +633,13 @@
|
|||
|
||||
CGRect vb = [self.view bounds];
|
||||
CGRect keyboardFrame = [[userInfo objectForKey:UIKeyboardFrameEndUserInfoKey] CGRectValue];
|
||||
self.shareViewController.view.frame = CGRectMake(self.storyNavigationController.view.frame.origin.x,
|
||||
self.shareNavigationController.view.frame = CGRectMake(self.storyNavigationController.view.frame.origin.x,
|
||||
vb.size.height,
|
||||
self.storyNavigationController.view.frame.size.width,
|
||||
NB_DEFAULT_SHARE_HEIGHT);
|
||||
|
||||
CGRect storyNavigationFrame = self.storyNavigationController.view.frame;
|
||||
CGRect shareViewFrame = self.shareViewController.view.frame;
|
||||
CGRect shareViewFrame = self.shareNavigationController.view.frame;
|
||||
|
||||
UIInterfaceOrientation orientation = [UIApplication sharedApplication].statusBarOrientation;
|
||||
|
||||
|
@ -682,7 +688,7 @@
|
|||
options:UIViewAnimationOptionBeginFromCurrentState | curve
|
||||
animations:^{
|
||||
if (self.isHidingStory) {
|
||||
self.shareViewController.view.frame = CGRectMake(self.storyNavigationController.view.frame.origin.x,
|
||||
self.shareNavigationController.view.frame = CGRectMake(self.storyNavigationController.view.frame.origin.x,
|
||||
vb.size.height,
|
||||
self.storyNavigationController.view.frame.size.width,
|
||||
NB_DEFAULT_SHARE_HEIGHT);
|
||||
|
@ -698,7 +704,7 @@
|
|||
vb.size.height);
|
||||
}
|
||||
} else {
|
||||
self.shareViewController.view.frame = shareViewFrame;
|
||||
self.shareNavigationController.view.frame = shareViewFrame;
|
||||
// if the toolbar is higher, animate
|
||||
if (UIInterfaceOrientationIsPortrait(orientation) && !self.storyTitlesOnLeft) {
|
||||
if (self.storyNavigationController.view.frame.size.height < newStoryNavigationFrameHeight) {
|
||||
|
@ -712,10 +718,10 @@
|
|||
self.storyNavigationController.view.frame = storyNavigationFrame;
|
||||
[self.storyDetailViewController scrolltoComment];
|
||||
} else {
|
||||
// remove the shareViewController after keyboard slides down
|
||||
// remove the shareNavigationController after keyboard slides down
|
||||
if (self.isHidingStory) {
|
||||
self.isHidingStory = NO;
|
||||
[self.shareViewController.view removeFromSuperview];
|
||||
[self.shareNavigationController.view removeFromSuperview];
|
||||
}
|
||||
}
|
||||
}];
|
||||
|
|
|
@ -239,7 +239,8 @@
|
|||
[self.masterContainerViewController transitionToShareView];
|
||||
[self.shareViewController setSiteInfo:type setUserId:userId setUsername:username setReplyId:replyId];
|
||||
} else {
|
||||
[self.navigationController presentModalViewController:self.shareViewController animated:YES];
|
||||
UINavigationController *shareNav = [[UINavigationController alloc] initWithRootViewController:self.shareViewController];
|
||||
[self.navigationController presentModalViewController:shareNav animated:YES];
|
||||
[self.shareViewController setSiteInfo:type setUserId:userId setUsername:username setReplyId:replyId];
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1184,7 +1184,7 @@
|
|||
NSString *bgImageName = nil;
|
||||
CGFloat bgMargin = 0.0;
|
||||
CGFloat bgCapSize = 0.0;
|
||||
CGFloat contentMargin = 4.0;
|
||||
CGFloat contentMargin = 5.0;
|
||||
|
||||
bgImageName = @"popoverBg.png";
|
||||
|
||||
|
|
|
@ -124,8 +124,11 @@
|
|||
|
||||
// ACTIVITY INDICATOR
|
||||
UIActivityIndicatorView *activityView = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleGray];
|
||||
activityView.frame = CGRectMake(50, 98, 20, 20.0);
|
||||
activityView.frame = CGRectMake(40, 98, 20, 20.0);
|
||||
self.activityIndicator = activityView;
|
||||
|
||||
[self.activityIndicator startAnimating];
|
||||
|
||||
[self.contentView addSubview:self.activityIndicator];
|
||||
|
||||
yCoordinatePointer = self.username.frame.origin.y + self.username.frame.size.height;
|
||||
|
|
|
@ -24,6 +24,7 @@
|
|||
@synthesize appDelegate;
|
||||
@synthesize activeReplyId;
|
||||
|
||||
|
||||
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
|
||||
{
|
||||
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
|
||||
|
|
|
@ -13,9 +13,7 @@
|
|||
<array key="IBDocument.IntegratedClassDependencies">
|
||||
<string>IBUITextView</string>
|
||||
<string>IBUIButton</string>
|
||||
<string>IBUIToolbar</string>
|
||||
<string>IBUIView</string>
|
||||
<string>IBUIBarButtonItem</string>
|
||||
<string>IBProxyObject</string>
|
||||
</array>
|
||||
<array key="IBDocument.PluginDependencies">
|
||||
|
@ -36,61 +34,12 @@
|
|||
</object>
|
||||
<object class="IBUIView" id="766721923">
|
||||
<reference key="NSNextResponder"/>
|
||||
<int key="NSvFlags">292</int>
|
||||
<int key="NSvFlags">319</int>
|
||||
<array class="NSMutableArray" key="NSSubviews">
|
||||
<object class="IBUIToolbar" id="975114462">
|
||||
<reference key="NSNextResponder" ref="766721923"/>
|
||||
<int key="NSvFlags">290</int>
|
||||
<string key="NSFrameSize">{704, 44}</string>
|
||||
<reference key="NSSuperview" ref="766721923"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="505763753"/>
|
||||
<string key="NSReuseIdentifierKey">_NS:9</string>
|
||||
<bool key="IBUIOpaque">NO</bool>
|
||||
<bool key="IBUIClearsContextBeforeDrawing">NO</bool>
|
||||
<string key="targetRuntimeIdentifier">IBIPadFramework</string>
|
||||
<array class="NSMutableArray" key="IBUIItems">
|
||||
<object class="IBUIBarButtonItem" id="876218419">
|
||||
<string key="targetRuntimeIdentifier">IBIPadFramework</string>
|
||||
<int key="IBUIStyle">1</int>
|
||||
<reference key="IBUIToolbar" ref="975114462"/>
|
||||
<object class="NSColor" key="IBUITintColor" id="316356324">
|
||||
<int key="NSColorSpace">3</int>
|
||||
<bytes key="NSWhite">MC42NjY2NjY2NjY3AA</bytes>
|
||||
</object>
|
||||
<int key="IBUISystemItemIdentifier">1</int>
|
||||
</object>
|
||||
<object class="IBUIBarButtonItem" id="285077905">
|
||||
<string key="targetRuntimeIdentifier">IBIPadFramework</string>
|
||||
<reference key="IBUIToolbar" ref="975114462"/>
|
||||
<int key="IBUISystemItemIdentifier">5</int>
|
||||
</object>
|
||||
<object class="IBUIBarButtonItem" id="238852457">
|
||||
<string key="IBUITitle">Post to Blurblog</string>
|
||||
<string key="targetRuntimeIdentifier">IBIPadFramework</string>
|
||||
<reference key="IBUIToolbar" ref="975114462"/>
|
||||
</object>
|
||||
<object class="IBUIBarButtonItem" id="602475399">
|
||||
<string key="targetRuntimeIdentifier">IBIPadFramework</string>
|
||||
<reference key="IBUIToolbar" ref="975114462"/>
|
||||
<int key="IBUISystemItemIdentifier">5</int>
|
||||
</object>
|
||||
<object class="IBUIBarButtonItem" id="905208122">
|
||||
<string key="IBUITitle">Share this story</string>
|
||||
<string key="targetRuntimeIdentifier">IBIPadFramework</string>
|
||||
<int key="IBUIStyle">1</int>
|
||||
<reference key="IBUIToolbar" ref="975114462"/>
|
||||
<object class="NSColor" key="IBUITintColor">
|
||||
<int key="NSColorSpace">1</int>
|
||||
<bytes key="NSRGB">MCAwLjUwMTk2MDgxNCAwAA</bytes>
|
||||
</object>
|
||||
</object>
|
||||
</array>
|
||||
</object>
|
||||
<object class="IBUITextView" id="993868796">
|
||||
<reference key="NSNextResponder" ref="766721923"/>
|
||||
<int key="NSvFlags">294</int>
|
||||
<string key="NSFrame">{{72, 54}, {579, 54}}</string>
|
||||
<int key="NSvFlags">301</int>
|
||||
<string key="NSFrame">{{84, 11}, {579, 54}}</string>
|
||||
<reference key="NSSuperview" ref="766721923"/>
|
||||
<reference key="NSWindow"/>
|
||||
<string key="NSReuseIdentifierKey">_NS:9</string>
|
||||
|
@ -119,8 +68,8 @@
|
|||
</object>
|
||||
<object class="IBUIButton" id="161540210">
|
||||
<reference key="NSNextResponder" ref="766721923"/>
|
||||
<int key="NSvFlags">292</int>
|
||||
<string key="NSFrame">{{29, 84}, {27, 27}}</string>
|
||||
<int key="NSvFlags">301</int>
|
||||
<string key="NSFrame">{{41, 41}, {27, 27}}</string>
|
||||
<reference key="NSSuperview" ref="766721923"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="993868796"/>
|
||||
|
@ -130,7 +79,10 @@
|
|||
<int key="IBUIContentHorizontalAlignment">0</int>
|
||||
<int key="IBUIContentVerticalAlignment">0</int>
|
||||
<int key="IBUIButtonType">1</int>
|
||||
<reference key="IBUITintColor" ref="316356324"/>
|
||||
<object class="NSColor" key="IBUITintColor" id="316356324">
|
||||
<int key="NSColorSpace">3</int>
|
||||
<bytes key="NSWhite">MC42NjY2NjY2NjY3AA</bytes>
|
||||
</object>
|
||||
<string key="IBUINormalTitle">Facebook</string>
|
||||
<object class="NSColor" key="IBUIHighlightedTitleColor" id="399517210">
|
||||
<int key="NSColorSpace">3</int>
|
||||
|
@ -164,8 +116,8 @@
|
|||
</object>
|
||||
<object class="IBUIButton" id="505763753">
|
||||
<reference key="NSNextResponder" ref="766721923"/>
|
||||
<int key="NSvFlags">292</int>
|
||||
<string key="NSFrame">{{29, 54}, {27, 27}}</string>
|
||||
<int key="NSvFlags">301</int>
|
||||
<string key="NSFrame">{{41, 11}, {27, 27}}</string>
|
||||
<reference key="NSSuperview" ref="766721923"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="161540210"/>
|
||||
|
@ -195,10 +147,10 @@
|
|||
<reference key="IBUIFont" ref="774498236"/>
|
||||
</object>
|
||||
</array>
|
||||
<string key="NSFrameSize">{704, 120}</string>
|
||||
<string key="NSFrameSize">{704, 76}</string>
|
||||
<reference key="NSSuperview"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="975114462"/>
|
||||
<reference key="NSNextKeyView" ref="505763753"/>
|
||||
<object class="NSColor" key="IBUIBackgroundColor">
|
||||
<int key="NSColorSpace">3</int>
|
||||
<bytes key="NSWhite">MQA</bytes>
|
||||
|
@ -248,38 +200,6 @@
|
|||
</object>
|
||||
<int key="connectionID">37</int>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBCocoaTouchOutletConnection" key="connection">
|
||||
<string key="label">toolbarTitle</string>
|
||||
<reference key="source" ref="841351856"/>
|
||||
<reference key="destination" ref="238852457"/>
|
||||
</object>
|
||||
<int key="connectionID">43</int>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBCocoaTouchOutletConnection" key="connection">
|
||||
<string key="label">submitButton</string>
|
||||
<reference key="source" ref="841351856"/>
|
||||
<reference key="destination" ref="905208122"/>
|
||||
</object>
|
||||
<int key="connectionID">38</int>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBCocoaTouchEventConnection" key="connection">
|
||||
<string key="label">doShareThisStory:</string>
|
||||
<reference key="source" ref="905208122"/>
|
||||
<reference key="destination" ref="841351856"/>
|
||||
</object>
|
||||
<int key="connectionID">30</int>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBCocoaTouchEventConnection" key="connection">
|
||||
<string key="label">doCancelButton:</string>
|
||||
<reference key="source" ref="876218419"/>
|
||||
<reference key="destination" ref="841351856"/>
|
||||
</object>
|
||||
<int key="connectionID">18</int>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBCocoaTouchEventConnection" key="connection">
|
||||
<string key="label">doToggleButton:</string>
|
||||
|
@ -322,7 +242,6 @@
|
|||
<int key="objectID">2</int>
|
||||
<reference key="object" ref="766721923"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="975114462"/>
|
||||
<reference ref="993868796"/>
|
||||
<reference ref="161540210"/>
|
||||
<reference ref="505763753"/>
|
||||
|
@ -344,43 +263,6 @@
|
|||
<reference key="object" ref="505763753"/>
|
||||
<reference key="parent" ref="766721923"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">12</int>
|
||||
<reference key="object" ref="975114462"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="905208122"/>
|
||||
<reference ref="285077905"/>
|
||||
<reference ref="876218419"/>
|
||||
<reference ref="602475399"/>
|
||||
<reference ref="238852457"/>
|
||||
</array>
|
||||
<reference key="parent" ref="766721923"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">42</int>
|
||||
<reference key="object" ref="238852457"/>
|
||||
<reference key="parent" ref="975114462"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">41</int>
|
||||
<reference key="object" ref="602475399"/>
|
||||
<reference key="parent" ref="975114462"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">17</int>
|
||||
<reference key="object" ref="876218419"/>
|
||||
<reference key="parent" ref="975114462"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">14</int>
|
||||
<reference key="object" ref="285077905"/>
|
||||
<reference key="parent" ref="975114462"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">13</int>
|
||||
<reference key="object" ref="905208122"/>
|
||||
<reference key="parent" ref="975114462"/>
|
||||
</object>
|
||||
</array>
|
||||
</object>
|
||||
<dictionary class="NSMutableDictionary" key="flattenedProperties">
|
||||
|
@ -388,18 +270,12 @@
|
|||
<string key="-1.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<string key="-2.CustomClassName">UIResponder</string>
|
||||
<string key="-2.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<string key="12.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<string key="13.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<string key="14.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<string key="17.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<string key="19.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<string key="2.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<string key="20.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<real value="0.0" key="20.IBUIButtonInspectorSelectedStateConfigurationMetadataKey"/>
|
||||
<string key="21.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<real value="0.0" key="21.IBUIButtonInspectorSelectedStateConfigurationMetadataKey"/>
|
||||
<string key="41.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<string key="42.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
</dictionary>
|
||||
<dictionary class="NSMutableDictionary" key="unlocalizedProperties"/>
|
||||
<nil key="activeLocalization"/>
|
||||
|
@ -549,29 +425,30 @@
|
|||
<object class="IBPartialClassDescription">
|
||||
<string key="className">DashboardViewController</string>
|
||||
<string key="superclassName">UIViewController</string>
|
||||
<object class="NSMutableDictionary" key="actions">
|
||||
<string key="NS.key.0">doLogout:</string>
|
||||
<string key="NS.object.0">id</string>
|
||||
</object>
|
||||
<object class="NSMutableDictionary" key="actionInfosByName">
|
||||
<string key="NS.key.0">doLogout:</string>
|
||||
<object class="IBActionInfo" key="NS.object.0">
|
||||
<dictionary class="NSMutableDictionary" key="actions">
|
||||
<string key="doLogout:">id</string>
|
||||
<string key="tapSegmentedButton:">id</string>
|
||||
</dictionary>
|
||||
<dictionary class="NSMutableDictionary" key="actionInfosByName">
|
||||
<object class="IBActionInfo" key="doLogout:">
|
||||
<string key="name">doLogout:</string>
|
||||
<string key="candidateClassName">id</string>
|
||||
</object>
|
||||
</object>
|
||||
<object class="IBActionInfo" key="tapSegmentedButton:">
|
||||
<string key="name">tapSegmentedButton:</string>
|
||||
<string key="candidateClassName">id</string>
|
||||
</object>
|
||||
</dictionary>
|
||||
<dictionary class="NSMutableDictionary" key="outlets">
|
||||
<string key="activitesLabel">UILabel</string>
|
||||
<string key="activitiesModule">ActivityModule</string>
|
||||
<string key="appDelegate">NewsBlurAppDelegate</string>
|
||||
<string key="interactionsLabel">UILabel</string>
|
||||
<string key="feedbackWebView">UIWebView</string>
|
||||
<string key="interactionsModule">InteractionsModule</string>
|
||||
<string key="segmentedButton">UISegmentedControl</string>
|
||||
<string key="toolbar">UIToolbar</string>
|
||||
<string key="topToolbar">UIToolbar</string>
|
||||
</dictionary>
|
||||
<dictionary class="NSMutableDictionary" key="toOneOutletInfosByName">
|
||||
<object class="IBToOneOutletInfo" key="activitesLabel">
|
||||
<string key="name">activitesLabel</string>
|
||||
<string key="candidateClassName">UILabel</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="activitiesModule">
|
||||
<string key="name">activitiesModule</string>
|
||||
<string key="candidateClassName">ActivityModule</string>
|
||||
|
@ -580,40 +457,30 @@
|
|||
<string key="name">appDelegate</string>
|
||||
<string key="candidateClassName">NewsBlurAppDelegate</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="interactionsLabel">
|
||||
<string key="name">interactionsLabel</string>
|
||||
<string key="candidateClassName">UILabel</string>
|
||||
<object class="IBToOneOutletInfo" key="feedbackWebView">
|
||||
<string key="name">feedbackWebView</string>
|
||||
<string key="candidateClassName">UIWebView</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="interactionsModule">
|
||||
<string key="name">interactionsModule</string>
|
||||
<string key="candidateClassName">InteractionsModule</string>
|
||||
</object>
|
||||
</dictionary>
|
||||
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
||||
<string key="majorKey">IBProjectSource</string>
|
||||
<string key="minorKey">./Classes/DashboardViewController.h</string>
|
||||
</object>
|
||||
</object>
|
||||
<object class="IBPartialClassDescription">
|
||||
<string key="className">FeedDashboardViewController</string>
|
||||
<string key="superclassName">UIViewController</string>
|
||||
<dictionary class="NSMutableDictionary" key="outlets">
|
||||
<string key="appDelegate">NewsBlurAppDelegate</string>
|
||||
<string key="toolbar">UIToolbar</string>
|
||||
</dictionary>
|
||||
<dictionary class="NSMutableDictionary" key="toOneOutletInfosByName">
|
||||
<object class="IBToOneOutletInfo" key="appDelegate">
|
||||
<string key="name">appDelegate</string>
|
||||
<string key="candidateClassName">NewsBlurAppDelegate</string>
|
||||
<object class="IBToOneOutletInfo" key="segmentedButton">
|
||||
<string key="name">segmentedButton</string>
|
||||
<string key="candidateClassName">UISegmentedControl</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="toolbar">
|
||||
<string key="name">toolbar</string>
|
||||
<string key="candidateClassName">UIToolbar</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="topToolbar">
|
||||
<string key="name">topToolbar</string>
|
||||
<string key="candidateClassName">UIToolbar</string>
|
||||
</object>
|
||||
</dictionary>
|
||||
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
||||
<string key="majorKey">IBProjectSource</string>
|
||||
<string key="minorKey">./Classes/FeedDashboardViewController.h</string>
|
||||
<string key="minorKey">./Classes/DashboardViewController.h</string>
|
||||
</object>
|
||||
</object>
|
||||
<object class="IBPartialClassDescription">
|
||||
|
@ -685,21 +552,9 @@
|
|||
<object class="IBPartialClassDescription">
|
||||
<string key="className">FeedsMenuViewController</string>
|
||||
<string key="superclassName">UIViewController</string>
|
||||
<object class="NSMutableDictionary" key="actions">
|
||||
<string key="NS.key.0">tapCancelButton:</string>
|
||||
<string key="NS.object.0">UIBarButtonItem</string>
|
||||
</object>
|
||||
<object class="NSMutableDictionary" key="actionInfosByName">
|
||||
<string key="NS.key.0">tapCancelButton:</string>
|
||||
<object class="IBActionInfo" key="NS.object.0">
|
||||
<string key="name">tapCancelButton:</string>
|
||||
<string key="candidateClassName">UIBarButtonItem</string>
|
||||
</object>
|
||||
</object>
|
||||
<dictionary class="NSMutableDictionary" key="outlets">
|
||||
<string key="appDelegate">NewsBlurAppDelegate</string>
|
||||
<string key="menuTableView">UITableView</string>
|
||||
<string key="toolbar">UIToolbar</string>
|
||||
</dictionary>
|
||||
<dictionary class="NSMutableDictionary" key="toOneOutletInfosByName">
|
||||
<object class="IBToOneOutletInfo" key="appDelegate">
|
||||
|
@ -710,10 +565,6 @@
|
|||
<string key="name">menuTableView</string>
|
||||
<string key="candidateClassName">UITableView</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="toolbar">
|
||||
<string key="name">toolbar</string>
|
||||
<string key="candidateClassName">UIToolbar</string>
|
||||
</object>
|
||||
</dictionary>
|
||||
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
||||
<string key="majorKey">IBProjectSource</string>
|
||||
|
@ -721,7 +572,34 @@
|
|||
</object>
|
||||
</object>
|
||||
<object class="IBPartialClassDescription">
|
||||
<string key="className">FirstTimeUserViewController</string>
|
||||
<string key="className">FindSitesViewController</string>
|
||||
<string key="superclassName">UIViewController</string>
|
||||
<dictionary class="NSMutableDictionary" key="outlets">
|
||||
<string key="appDelegate">NewsBlurAppDelegate</string>
|
||||
<string key="sitesSearchBar">UISearchBar</string>
|
||||
<string key="sitesTable">UITableView</string>
|
||||
</dictionary>
|
||||
<dictionary class="NSMutableDictionary" key="toOneOutletInfosByName">
|
||||
<object class="IBToOneOutletInfo" key="appDelegate">
|
||||
<string key="name">appDelegate</string>
|
||||
<string key="candidateClassName">NewsBlurAppDelegate</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="sitesSearchBar">
|
||||
<string key="name">sitesSearchBar</string>
|
||||
<string key="candidateClassName">UISearchBar</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="sitesTable">
|
||||
<string key="name">sitesTable</string>
|
||||
<string key="candidateClassName">UITableView</string>
|
||||
</object>
|
||||
</dictionary>
|
||||
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
||||
<string key="majorKey">IBProjectSource</string>
|
||||
<string key="minorKey">./Classes/FindSitesViewController.h</string>
|
||||
</object>
|
||||
</object>
|
||||
<object class="IBPartialClassDescription">
|
||||
<string key="className">FirstTimeUserAddFriendsViewController</string>
|
||||
<string key="superclassName">UIViewController</string>
|
||||
<dictionary class="NSMutableDictionary" key="actions">
|
||||
<string key="tapCategoryButton:">id</string>
|
||||
|
@ -755,6 +633,7 @@
|
|||
<string key="googleReaderButton">UIButton</string>
|
||||
<string key="logo">UIImageView</string>
|
||||
<string key="nextButton">UIBarButtonItem</string>
|
||||
<string key="previousButton">UIBarButtonItem</string>
|
||||
<string key="toolbar">UIToolbar</string>
|
||||
<string key="toolbarTitle">UIButton</string>
|
||||
<string key="welcomeView">UIView</string>
|
||||
|
@ -788,6 +667,10 @@
|
|||
<string key="name">nextButton</string>
|
||||
<string key="candidateClassName">UIBarButtonItem</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="previousButton">
|
||||
<string key="name">previousButton</string>
|
||||
<string key="candidateClassName">UIBarButtonItem</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="toolbar">
|
||||
<string key="name">toolbar</string>
|
||||
<string key="candidateClassName">UIToolbar</string>
|
||||
|
@ -801,6 +684,226 @@
|
|||
<string key="candidateClassName">UIView</string>
|
||||
</object>
|
||||
</dictionary>
|
||||
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
||||
<string key="majorKey">IBProjectSource</string>
|
||||
<string key="minorKey">./Classes/FirstTimeUserAddFriendsViewController.h</string>
|
||||
</object>
|
||||
</object>
|
||||
<object class="IBPartialClassDescription">
|
||||
<string key="className">FirstTimeUserAddNewsBlurViewController</string>
|
||||
<string key="superclassName">UIViewController</string>
|
||||
<dictionary class="NSMutableDictionary" key="actions">
|
||||
<string key="tapCategoryButton:">id</string>
|
||||
<string key="tapGoogleReaderButton">id</string>
|
||||
<string key="tapNewsBlurButton:">id</string>
|
||||
<string key="tapNextButton">id</string>
|
||||
</dictionary>
|
||||
<dictionary class="NSMutableDictionary" key="actionInfosByName">
|
||||
<object class="IBActionInfo" key="tapCategoryButton:">
|
||||
<string key="name">tapCategoryButton:</string>
|
||||
<string key="candidateClassName">id</string>
|
||||
</object>
|
||||
<object class="IBActionInfo" key="tapGoogleReaderButton">
|
||||
<string key="name">tapGoogleReaderButton</string>
|
||||
<string key="candidateClassName">id</string>
|
||||
</object>
|
||||
<object class="IBActionInfo" key="tapNewsBlurButton:">
|
||||
<string key="name">tapNewsBlurButton:</string>
|
||||
<string key="candidateClassName">id</string>
|
||||
</object>
|
||||
<object class="IBActionInfo" key="tapNextButton">
|
||||
<string key="name">tapNextButton</string>
|
||||
<string key="candidateClassName">id</string>
|
||||
</object>
|
||||
</dictionary>
|
||||
<dictionary class="NSMutableDictionary" key="outlets">
|
||||
<string key="addFriendsView">UIView</string>
|
||||
<string key="addNewsBlurView">UIView</string>
|
||||
<string key="addSitesView">UIView</string>
|
||||
<string key="appDelegate">NewsBlurAppDelegate</string>
|
||||
<string key="googleReaderButton">UIButton</string>
|
||||
<string key="logo">UIImageView</string>
|
||||
<string key="nextButton">UIBarButtonItem</string>
|
||||
<string key="previousButton">UIBarButtonItem</string>
|
||||
<string key="toolbar">UIToolbar</string>
|
||||
<string key="toolbarTitle">UIButton</string>
|
||||
<string key="welcomeView">UIView</string>
|
||||
</dictionary>
|
||||
<dictionary class="NSMutableDictionary" key="toOneOutletInfosByName">
|
||||
<object class="IBToOneOutletInfo" key="addFriendsView">
|
||||
<string key="name">addFriendsView</string>
|
||||
<string key="candidateClassName">UIView</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="addNewsBlurView">
|
||||
<string key="name">addNewsBlurView</string>
|
||||
<string key="candidateClassName">UIView</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="addSitesView">
|
||||
<string key="name">addSitesView</string>
|
||||
<string key="candidateClassName">UIView</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="appDelegate">
|
||||
<string key="name">appDelegate</string>
|
||||
<string key="candidateClassName">NewsBlurAppDelegate</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="googleReaderButton">
|
||||
<string key="name">googleReaderButton</string>
|
||||
<string key="candidateClassName">UIButton</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="logo">
|
||||
<string key="name">logo</string>
|
||||
<string key="candidateClassName">UIImageView</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="nextButton">
|
||||
<string key="name">nextButton</string>
|
||||
<string key="candidateClassName">UIBarButtonItem</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="previousButton">
|
||||
<string key="name">previousButton</string>
|
||||
<string key="candidateClassName">UIBarButtonItem</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="toolbar">
|
||||
<string key="name">toolbar</string>
|
||||
<string key="candidateClassName">UIToolbar</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="toolbarTitle">
|
||||
<string key="name">toolbarTitle</string>
|
||||
<string key="candidateClassName">UIButton</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="welcomeView">
|
||||
<string key="name">welcomeView</string>
|
||||
<string key="candidateClassName">UIView</string>
|
||||
</object>
|
||||
</dictionary>
|
||||
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
||||
<string key="majorKey">IBProjectSource</string>
|
||||
<string key="minorKey">./Classes/FirstTimeUserAddNewsBlurViewController.h</string>
|
||||
</object>
|
||||
</object>
|
||||
<object class="IBPartialClassDescription">
|
||||
<string key="className">FirstTimeUserAddSitesViewController</string>
|
||||
<string key="superclassName">UIViewController</string>
|
||||
<dictionary class="NSMutableDictionary" key="actions">
|
||||
<string key="tapCategoryButton:">id</string>
|
||||
<string key="tapGoogleReaderButton">id</string>
|
||||
<string key="tapNewsBlurButton:">id</string>
|
||||
<string key="tapNextButton">id</string>
|
||||
</dictionary>
|
||||
<dictionary class="NSMutableDictionary" key="actionInfosByName">
|
||||
<object class="IBActionInfo" key="tapCategoryButton:">
|
||||
<string key="name">tapCategoryButton:</string>
|
||||
<string key="candidateClassName">id</string>
|
||||
</object>
|
||||
<object class="IBActionInfo" key="tapGoogleReaderButton">
|
||||
<string key="name">tapGoogleReaderButton</string>
|
||||
<string key="candidateClassName">id</string>
|
||||
</object>
|
||||
<object class="IBActionInfo" key="tapNewsBlurButton:">
|
||||
<string key="name">tapNewsBlurButton:</string>
|
||||
<string key="candidateClassName">id</string>
|
||||
</object>
|
||||
<object class="IBActionInfo" key="tapNextButton">
|
||||
<string key="name">tapNextButton</string>
|
||||
<string key="candidateClassName">id</string>
|
||||
</object>
|
||||
</dictionary>
|
||||
<dictionary class="NSMutableDictionary" key="outlets">
|
||||
<string key="addFriendsView">UIView</string>
|
||||
<string key="addNewsBlurView">UIView</string>
|
||||
<string key="addSitesView">UIView</string>
|
||||
<string key="appDelegate">NewsBlurAppDelegate</string>
|
||||
<string key="googleReaderButton">UIButton</string>
|
||||
<string key="logo">UIImageView</string>
|
||||
<string key="nextButton">UIBarButtonItem</string>
|
||||
<string key="previousButton">UIBarButtonItem</string>
|
||||
<string key="toolbar">UIToolbar</string>
|
||||
<string key="toolbarTitle">UIButton</string>
|
||||
<string key="welcomeView">UIView</string>
|
||||
</dictionary>
|
||||
<dictionary class="NSMutableDictionary" key="toOneOutletInfosByName">
|
||||
<object class="IBToOneOutletInfo" key="addFriendsView">
|
||||
<string key="name">addFriendsView</string>
|
||||
<string key="candidateClassName">UIView</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="addNewsBlurView">
|
||||
<string key="name">addNewsBlurView</string>
|
||||
<string key="candidateClassName">UIView</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="addSitesView">
|
||||
<string key="name">addSitesView</string>
|
||||
<string key="candidateClassName">UIView</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="appDelegate">
|
||||
<string key="name">appDelegate</string>
|
||||
<string key="candidateClassName">NewsBlurAppDelegate</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="googleReaderButton">
|
||||
<string key="name">googleReaderButton</string>
|
||||
<string key="candidateClassName">UIButton</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="logo">
|
||||
<string key="name">logo</string>
|
||||
<string key="candidateClassName">UIImageView</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="nextButton">
|
||||
<string key="name">nextButton</string>
|
||||
<string key="candidateClassName">UIBarButtonItem</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="previousButton">
|
||||
<string key="name">previousButton</string>
|
||||
<string key="candidateClassName">UIBarButtonItem</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="toolbar">
|
||||
<string key="name">toolbar</string>
|
||||
<string key="candidateClassName">UIToolbar</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="toolbarTitle">
|
||||
<string key="name">toolbarTitle</string>
|
||||
<string key="candidateClassName">UIButton</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="welcomeView">
|
||||
<string key="name">welcomeView</string>
|
||||
<string key="candidateClassName">UIView</string>
|
||||
</object>
|
||||
</dictionary>
|
||||
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
||||
<string key="majorKey">IBProjectSource</string>
|
||||
<string key="minorKey">./Classes/FirstTimeUserAddSitesViewController.h</string>
|
||||
</object>
|
||||
</object>
|
||||
<object class="IBPartialClassDescription">
|
||||
<string key="className">FirstTimeUserViewController</string>
|
||||
<string key="superclassName">UIViewController</string>
|
||||
<object class="NSMutableDictionary" key="actions">
|
||||
<string key="NS.key.0">tapNextButton</string>
|
||||
<string key="NS.object.0">id</string>
|
||||
</object>
|
||||
<object class="NSMutableDictionary" key="actionInfosByName">
|
||||
<string key="NS.key.0">tapNextButton</string>
|
||||
<object class="IBActionInfo" key="NS.object.0">
|
||||
<string key="name">tapNextButton</string>
|
||||
<string key="candidateClassName">id</string>
|
||||
</object>
|
||||
</object>
|
||||
<dictionary class="NSMutableDictionary" key="outlets">
|
||||
<string key="appDelegate">NewsBlurAppDelegate</string>
|
||||
<string key="logo">UIImageView</string>
|
||||
<string key="nextButton">UIBarButtonItem</string>
|
||||
</dictionary>
|
||||
<dictionary class="NSMutableDictionary" key="toOneOutletInfosByName">
|
||||
<object class="IBToOneOutletInfo" key="appDelegate">
|
||||
<string key="name">appDelegate</string>
|
||||
<string key="candidateClassName">NewsBlurAppDelegate</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="logo">
|
||||
<string key="name">logo</string>
|
||||
<string key="candidateClassName">UIImageView</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="nextButton">
|
||||
<string key="name">nextButton</string>
|
||||
<string key="candidateClassName">UIBarButtonItem</string>
|
||||
</object>
|
||||
</dictionary>
|
||||
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
||||
<string key="majorKey">IBProjectSource</string>
|
||||
<string key="minorKey">./Classes/FirstTimeUserViewController.h</string>
|
||||
|
@ -862,27 +965,22 @@
|
|||
<string key="superclassName">UIViewController</string>
|
||||
<dictionary class="NSMutableDictionary" key="outlets">
|
||||
<string key="appDelegate">NewsBlurAppDelegate</string>
|
||||
<string key="friendSearchBar">UISearchBar</string>
|
||||
<string key="friendsTable">UITableView</string>
|
||||
<string key="searchBar">UISearchBar</string>
|
||||
<string key="searchDisplayController">UISearchDisplayController</string>
|
||||
</dictionary>
|
||||
<dictionary class="NSMutableDictionary" key="toOneOutletInfosByName">
|
||||
<object class="IBToOneOutletInfo" key="appDelegate">
|
||||
<string key="name">appDelegate</string>
|
||||
<string key="candidateClassName">NewsBlurAppDelegate</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="friendSearchBar">
|
||||
<string key="name">friendSearchBar</string>
|
||||
<string key="candidateClassName">UISearchBar</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="friendsTable">
|
||||
<string key="name">friendsTable</string>
|
||||
<string key="candidateClassName">UITableView</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="searchBar">
|
||||
<string key="name">searchBar</string>
|
||||
<string key="candidateClassName">UISearchBar</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="searchDisplayController">
|
||||
<string key="name">searchDisplayController</string>
|
||||
<string key="candidateClassName">UISearchDisplayController</string>
|
||||
</object>
|
||||
</dictionary>
|
||||
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
||||
<string key="majorKey">IBProjectSource</string>
|
||||
|
@ -1056,57 +1154,6 @@
|
|||
<string key="minorKey">./Classes/LoginViewController.h</string>
|
||||
</object>
|
||||
</object>
|
||||
<object class="IBPartialClassDescription">
|
||||
<string key="className">MGSplitViewController</string>
|
||||
<string key="superclassName">UIViewController</string>
|
||||
<dictionary class="NSMutableDictionary" key="actions">
|
||||
<string key="showMasterPopover:">id</string>
|
||||
<string key="toggleMasterBeforeDetail:">id</string>
|
||||
<string key="toggleMasterView:">id</string>
|
||||
<string key="toggleSplitOrientation:">id</string>
|
||||
</dictionary>
|
||||
<dictionary class="NSMutableDictionary" key="actionInfosByName">
|
||||
<object class="IBActionInfo" key="showMasterPopover:">
|
||||
<string key="name">showMasterPopover:</string>
|
||||
<string key="candidateClassName">id</string>
|
||||
</object>
|
||||
<object class="IBActionInfo" key="toggleMasterBeforeDetail:">
|
||||
<string key="name">toggleMasterBeforeDetail:</string>
|
||||
<string key="candidateClassName">id</string>
|
||||
</object>
|
||||
<object class="IBActionInfo" key="toggleMasterView:">
|
||||
<string key="name">toggleMasterView:</string>
|
||||
<string key="candidateClassName">id</string>
|
||||
</object>
|
||||
<object class="IBActionInfo" key="toggleSplitOrientation:">
|
||||
<string key="name">toggleSplitOrientation:</string>
|
||||
<string key="candidateClassName">id</string>
|
||||
</object>
|
||||
</dictionary>
|
||||
<dictionary class="NSMutableDictionary" key="outlets">
|
||||
<string key="delegate">id</string>
|
||||
<string key="detailViewController">UIViewController</string>
|
||||
<string key="masterViewController">UIViewController</string>
|
||||
</dictionary>
|
||||
<dictionary class="NSMutableDictionary" key="toOneOutletInfosByName">
|
||||
<object class="IBToOneOutletInfo" key="delegate">
|
||||
<string key="name">delegate</string>
|
||||
<string key="candidateClassName">id</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="detailViewController">
|
||||
<string key="name">detailViewController</string>
|
||||
<string key="candidateClassName">UIViewController</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="masterViewController">
|
||||
<string key="name">masterViewController</string>
|
||||
<string key="candidateClassName">UIViewController</string>
|
||||
</object>
|
||||
</dictionary>
|
||||
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
||||
<string key="majorKey">IBProjectSource</string>
|
||||
<string key="minorKey">./Classes/MGSplitViewController.h</string>
|
||||
</object>
|
||||
</object>
|
||||
<object class="IBPartialClassDescription">
|
||||
<string key="className">MoveSiteViewController</string>
|
||||
<string key="superclassName">UIViewController</string>
|
||||
|
@ -1198,6 +1245,25 @@
|
|||
<string key="minorKey">./Classes/MoveSiteViewController.h</string>
|
||||
</object>
|
||||
</object>
|
||||
<object class="IBPartialClassDescription">
|
||||
<string key="className">NBContainerViewController</string>
|
||||
<string key="superclassName">UIViewController</string>
|
||||
<object class="NSMutableDictionary" key="outlets">
|
||||
<string key="NS.key.0">appDelegate</string>
|
||||
<string key="NS.object.0">NewsBlurAppDelegate</string>
|
||||
</object>
|
||||
<object class="NSMutableDictionary" key="toOneOutletInfosByName">
|
||||
<string key="NS.key.0">appDelegate</string>
|
||||
<object class="IBToOneOutletInfo" key="NS.object.0">
|
||||
<string key="name">appDelegate</string>
|
||||
<string key="candidateClassName">NewsBlurAppDelegate</string>
|
||||
</object>
|
||||
</object>
|
||||
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
||||
<string key="majorKey">IBProjectSource</string>
|
||||
<string key="minorKey">./Classes/NBContainerViewController.h</string>
|
||||
</object>
|
||||
</object>
|
||||
<object class="IBPartialClassDescription">
|
||||
<string key="className">NewsBlurAppDelegate</string>
|
||||
<string key="superclassName">BaseViewController</string>
|
||||
|
@ -1208,18 +1274,21 @@
|
|||
<string key="feedDetailViewController">FeedDetailViewController</string>
|
||||
<string key="feedsMenuViewController">FeedsMenuViewController</string>
|
||||
<string key="feedsViewController">NewsBlurViewController</string>
|
||||
<string key="findFriendsNavigationController">UINavigationController</string>
|
||||
<string key="findSitesViewController">FindSitesViewController</string>
|
||||
<string key="firstTimeUserAddFriendsViewController">FirstTimeUserAddFriendsViewController</string>
|
||||
<string key="firstTimeUserAddNewsBlurViewController">FirstTimeUserAddNewsBlurViewController</string>
|
||||
<string key="firstTimeUserAddSitesViewController">FirstTimeUserAddSitesViewController</string>
|
||||
<string key="firstTimeUserViewController">FirstTimeUserViewController</string>
|
||||
<string key="fontSettingsViewController">FontSettingsViewController</string>
|
||||
<string key="friendsListViewController">FriendsListViewController</string>
|
||||
<string key="ftuxNavigationController">UINavigationController</string>
|
||||
<string key="googleReaderViewController">GoogleReaderViewController</string>
|
||||
<string key="loginViewController">LoginViewController</string>
|
||||
<string key="masterContainerViewController">NBContainerViewController</string>
|
||||
<string key="moveSiteViewController">MoveSiteViewController</string>
|
||||
<string key="navigationController">UINavigationController</string>
|
||||
<string key="originalStoryViewController">OriginalStoryViewController</string>
|
||||
<string key="shareViewController">ShareViewController</string>
|
||||
<string key="splitStoryController">MGSplitViewController</string>
|
||||
<string key="splitStoryDetailNavigationController">UINavigationController</string>
|
||||
<string key="storyDetailViewController">StoryDetailViewController</string>
|
||||
<string key="userProfileViewController">UserProfileViewController</string>
|
||||
<string key="window">UIWindow</string>
|
||||
|
@ -1249,9 +1318,21 @@
|
|||
<string key="name">feedsViewController</string>
|
||||
<string key="candidateClassName">NewsBlurViewController</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="findFriendsNavigationController">
|
||||
<string key="name">findFriendsNavigationController</string>
|
||||
<string key="candidateClassName">UINavigationController</string>
|
||||
<object class="IBToOneOutletInfo" key="findSitesViewController">
|
||||
<string key="name">findSitesViewController</string>
|
||||
<string key="candidateClassName">FindSitesViewController</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="firstTimeUserAddFriendsViewController">
|
||||
<string key="name">firstTimeUserAddFriendsViewController</string>
|
||||
<string key="candidateClassName">FirstTimeUserAddFriendsViewController</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="firstTimeUserAddNewsBlurViewController">
|
||||
<string key="name">firstTimeUserAddNewsBlurViewController</string>
|
||||
<string key="candidateClassName">FirstTimeUserAddNewsBlurViewController</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="firstTimeUserAddSitesViewController">
|
||||
<string key="name">firstTimeUserAddSitesViewController</string>
|
||||
<string key="candidateClassName">FirstTimeUserAddSitesViewController</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="firstTimeUserViewController">
|
||||
<string key="name">firstTimeUserViewController</string>
|
||||
|
@ -1265,6 +1346,10 @@
|
|||
<string key="name">friendsListViewController</string>
|
||||
<string key="candidateClassName">FriendsListViewController</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="ftuxNavigationController">
|
||||
<string key="name">ftuxNavigationController</string>
|
||||
<string key="candidateClassName">UINavigationController</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="googleReaderViewController">
|
||||
<string key="name">googleReaderViewController</string>
|
||||
<string key="candidateClassName">GoogleReaderViewController</string>
|
||||
|
@ -1273,6 +1358,10 @@
|
|||
<string key="name">loginViewController</string>
|
||||
<string key="candidateClassName">LoginViewController</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="masterContainerViewController">
|
||||
<string key="name">masterContainerViewController</string>
|
||||
<string key="candidateClassName">NBContainerViewController</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="moveSiteViewController">
|
||||
<string key="name">moveSiteViewController</string>
|
||||
<string key="candidateClassName">MoveSiteViewController</string>
|
||||
|
@ -1289,14 +1378,6 @@
|
|||
<string key="name">shareViewController</string>
|
||||
<string key="candidateClassName">ShareViewController</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="splitStoryController">
|
||||
<string key="name">splitStoryController</string>
|
||||
<string key="candidateClassName">MGSplitViewController</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="splitStoryDetailNavigationController">
|
||||
<string key="name">splitStoryDetailNavigationController</string>
|
||||
<string key="candidateClassName">UINavigationController</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="storyDetailViewController">
|
||||
<string key="name">storyDetailViewController</string>
|
||||
<string key="candidateClassName">StoryDetailViewController</string>
|
||||
|
@ -1323,7 +1404,7 @@
|
|||
<string key="sectionUntapped:">UIButton</string>
|
||||
<string key="sectionUntappedOutside:">UIButton</string>
|
||||
<string key="selectIntelligence">id</string>
|
||||
<string key="showMenuButton:">id</string>
|
||||
<string key="tapAddSite:">id</string>
|
||||
</dictionary>
|
||||
<dictionary class="NSMutableDictionary" key="actionInfosByName">
|
||||
<object class="IBActionInfo" key="sectionTapped:">
|
||||
|
@ -1342,8 +1423,8 @@
|
|||
<string key="name">selectIntelligence</string>
|
||||
<string key="candidateClassName">id</string>
|
||||
</object>
|
||||
<object class="IBActionInfo" key="showMenuButton:">
|
||||
<string key="name">showMenuButton:</string>
|
||||
<object class="IBActionInfo" key="tapAddSite:">
|
||||
<string key="name">tapAddSite:</string>
|
||||
<string key="candidateClassName">id</string>
|
||||
</object>
|
||||
</dictionary>
|
||||
|
@ -1353,8 +1434,8 @@
|
|||
<string key="feedTitlesTable">UITableView</string>
|
||||
<string key="feedViewToolbar">UIToolbar</string>
|
||||
<string key="homeButton">UIBarButtonItem</string>
|
||||
<string key="innerView">UIView</string>
|
||||
<string key="intelligenceControl">UISegmentedControl</string>
|
||||
<string key="popoverController">UIPopoverController</string>
|
||||
</dictionary>
|
||||
<dictionary class="NSMutableDictionary" key="toOneOutletInfosByName">
|
||||
<object class="IBToOneOutletInfo" key="appDelegate">
|
||||
|
@ -1377,14 +1458,14 @@
|
|||
<string key="name">homeButton</string>
|
||||
<string key="candidateClassName">UIBarButtonItem</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="innerView">
|
||||
<string key="name">innerView</string>
|
||||
<string key="candidateClassName">UIView</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="intelligenceControl">
|
||||
<string key="name">intelligenceControl</string>
|
||||
<string key="candidateClassName">UISegmentedControl</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="popoverController">
|
||||
<string key="name">popoverController</string>
|
||||
<string key="candidateClassName">UIPopoverController</string>
|
||||
</object>
|
||||
</dictionary>
|
||||
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
||||
<string key="majorKey">IBProjectSource</string>
|
||||
|
@ -1545,6 +1626,8 @@
|
|||
<string key="doNextStory">id</string>
|
||||
<string key="doNextUnreadStory">id</string>
|
||||
<string key="doPreviousStory">id</string>
|
||||
<string key="showOriginalSubview:">id</string>
|
||||
<string key="tapProgressBar:">id</string>
|
||||
<string key="toggleFontSize:">id</string>
|
||||
</dictionary>
|
||||
<dictionary class="NSMutableDictionary" key="actionInfosByName">
|
||||
|
@ -1560,6 +1643,14 @@
|
|||
<string key="name">doPreviousStory</string>
|
||||
<string key="candidateClassName">id</string>
|
||||
</object>
|
||||
<object class="IBActionInfo" key="showOriginalSubview:">
|
||||
<string key="name">showOriginalSubview:</string>
|
||||
<string key="candidateClassName">id</string>
|
||||
</object>
|
||||
<object class="IBActionInfo" key="tapProgressBar:">
|
||||
<string key="name">tapProgressBar:</string>
|
||||
<string key="candidateClassName">id</string>
|
||||
</object>
|
||||
<object class="IBActionInfo" key="toggleFontSize:">
|
||||
<string key="name">toggleFontSize:</string>
|
||||
<string key="candidateClassName">id</string>
|
||||
|
@ -1568,14 +1659,18 @@
|
|||
<dictionary class="NSMutableDictionary" key="outlets">
|
||||
<string key="activity">UIBarButtonItem</string>
|
||||
<string key="appDelegate">NewsBlurAppDelegate</string>
|
||||
<string key="bottomPlaceholderToolbar">UIToolbar</string>
|
||||
<string key="buttonAction">UIBarButtonItem</string>
|
||||
<string key="buttonNext">UIBarButtonItem</string>
|
||||
<string key="buttonNextStory">UIBarButtonItem</string>
|
||||
<string key="buttonPrevious">UIBarButtonItem</string>
|
||||
<string key="feedTitleGradient">UIView</string>
|
||||
<string key="fontSettingsButton">UIBarButtonItem</string>
|
||||
<string key="innerView">UIView</string>
|
||||
<string key="noStorySelectedLabel">UILabel</string>
|
||||
<string key="originalStoryButton">UIBarButtonItem</string>
|
||||
<string key="progressView">UIProgressView</string>
|
||||
<string key="toggleViewButton">UIBarButtonItem</string>
|
||||
<string key="progressViewContainer">UIView</string>
|
||||
<string key="toolbar">UIToolbar</string>
|
||||
<string key="webView">UIWebView</string>
|
||||
</dictionary>
|
||||
|
@ -1588,6 +1683,10 @@
|
|||
<string key="name">appDelegate</string>
|
||||
<string key="candidateClassName">NewsBlurAppDelegate</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="bottomPlaceholderToolbar">
|
||||
<string key="name">bottomPlaceholderToolbar</string>
|
||||
<string key="candidateClassName">UIToolbar</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="buttonAction">
|
||||
<string key="name">buttonAction</string>
|
||||
<string key="candidateClassName">UIBarButtonItem</string>
|
||||
|
@ -1608,17 +1707,29 @@
|
|||
<string key="name">feedTitleGradient</string>
|
||||
<string key="candidateClassName">UIView</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="fontSettingsButton">
|
||||
<string key="name">fontSettingsButton</string>
|
||||
<string key="candidateClassName">UIBarButtonItem</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="innerView">
|
||||
<string key="name">innerView</string>
|
||||
<string key="candidateClassName">UIView</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="noStorySelectedLabel">
|
||||
<string key="name">noStorySelectedLabel</string>
|
||||
<string key="candidateClassName">UILabel</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="originalStoryButton">
|
||||
<string key="name">originalStoryButton</string>
|
||||
<string key="candidateClassName">UIBarButtonItem</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="progressView">
|
||||
<string key="name">progressView</string>
|
||||
<string key="candidateClassName">UIProgressView</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="toggleViewButton">
|
||||
<string key="name">toggleViewButton</string>
|
||||
<string key="candidateClassName">UIBarButtonItem</string>
|
||||
<object class="IBToOneOutletInfo" key="progressViewContainer">
|
||||
<string key="name">progressViewContainer</string>
|
||||
<string key="candidateClassName">UIView</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="toolbar">
|
||||
<string key="name">toolbar</string>
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -181,6 +181,7 @@
|
|||
|
||||
- (void)clearStory {
|
||||
[self.webView loadHTMLString:@"<html><head></head><body></body></html>" baseURL:nil];
|
||||
self.noStorySelectedLabel.hidden = NO;
|
||||
}
|
||||
|
||||
- (void)viewDidDisappear:(BOOL)animated {
|
||||
|
@ -429,9 +430,9 @@
|
|||
userReshareString,
|
||||
[user objectForKey:@"username"],
|
||||
[commentDict objectForKey:@"shared_date"],
|
||||
commentContent,
|
||||
[commentDict objectForKey:@"user_id"],
|
||||
[user objectForKey:@"username"],
|
||||
commentContent,
|
||||
userEditButton,
|
||||
userLikeButton,
|
||||
[self getReplies:[commentDict objectForKey:@"replies"] forUserId:[commentDict objectForKey:@"user_id"]]];
|
||||
|
@ -692,16 +693,17 @@
|
|||
- (void)setActiveStory {
|
||||
self.activeStoryId = [appDelegate.activeStory objectForKey:@"id"];
|
||||
if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPhone) {
|
||||
NSString *feedIdStr = [NSString stringWithFormat:@"%@", [appDelegate.activeStory objectForKey:@"story_feed_id"]];
|
||||
UIImage *titleImage = appDelegate.isRiverView ?
|
||||
[UIImage imageNamed:@"folder.png"] :
|
||||
if (!appDelegate.isSocialView) {
|
||||
NSString *feedIdStr = [NSString stringWithFormat:@"%@", [appDelegate.activeStory objectForKey:@"story_feed_id"]];
|
||||
UIImage *titleImage = appDelegate.isRiverView ?
|
||||
[UIImage imageNamed:@"folder_white.png"] :
|
||||
[Utilities getImage:feedIdStr];
|
||||
UIImageView *titleImageView = [[UIImageView alloc] initWithImage:titleImage];
|
||||
titleImageView.frame = CGRectMake(0.0, 2.0, 16.0, 16.0);
|
||||
titleImageView.hidden = YES;
|
||||
self.navigationItem.titleView = titleImageView;
|
||||
titleImageView.hidden = NO;
|
||||
|
||||
UIImageView *titleImageView = [[UIImageView alloc] initWithImage:titleImage];
|
||||
titleImageView.frame = CGRectMake(0.0, 2.0, 16.0, 16.0);
|
||||
titleImageView.hidden = YES;
|
||||
self.navigationItem.titleView = titleImageView;
|
||||
titleImageView.hidden = NO;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -920,7 +922,6 @@ shouldStartLoadWithRequest:(NSURLRequest *)request
|
|||
|
||||
// setting up the NEXT STORY BUTTON
|
||||
int activeLocation = appDelegate.locationOfActiveStory;
|
||||
NSLog(@"[appDelegate.activeFeedStoryLocations count] is %i", [appDelegate.activeFeedStoryLocations count]);
|
||||
if (activeLocation >= ([appDelegate.activeFeedStoryLocations count] - 1)) {
|
||||
self.buttonNextStory.enabled = NO;
|
||||
} else {
|
||||
|
@ -928,7 +929,6 @@ shouldStartLoadWithRequest:(NSURLRequest *)request
|
|||
}
|
||||
|
||||
// setting up the NEXT UNREAD STORY BUTTON
|
||||
NSLog(@"unreadStoryCount is %i", [appDelegate unreadCount]);
|
||||
int nextIndex = [appDelegate indexOfNextUnreadStory];
|
||||
int unreadCount = [appDelegate unreadCount];
|
||||
if (nextIndex == -1 && unreadCount > 0) {
|
||||
|
@ -953,9 +953,7 @@ shouldStartLoadWithRequest:(NSURLRequest *)request
|
|||
if ([[appDelegate.activeStory objectForKey:@"read_status"] intValue] != 1) {
|
||||
|
||||
[appDelegate markActiveStoryRead];
|
||||
|
||||
|
||||
|
||||
NSString *urlString;
|
||||
|
||||
if (appDelegate.isSocialView) {
|
||||
|
@ -1150,6 +1148,7 @@ shouldStartLoadWithRequest:(NSURLRequest *)request
|
|||
self.appDelegate.feedDetailViewController.feedPage < 50 &&
|
||||
!self.appDelegate.feedDetailViewController.pageFinished &&
|
||||
!self.appDelegate.feedDetailViewController.pageFetching) {
|
||||
|
||||
// Fetch next page and see if it has the unreads.
|
||||
[self.loadingIndicator startAnimating];
|
||||
self.activity.customView = self.loadingIndicator;
|
||||
|
@ -1174,18 +1173,17 @@ shouldStartLoadWithRequest:(NSURLRequest *)request
|
|||
[UIView setAnimationDuration:.5];
|
||||
[UIView setAnimationBeginsFromCurrentState:NO];
|
||||
[UIView setAnimationTransition:UIViewAnimationTransitionCurlUp
|
||||
forView:self.view
|
||||
forView:self.webView
|
||||
cache:NO];
|
||||
[UIView commitAnimations];
|
||||
}
|
||||
}
|
||||
|
||||
- (IBAction)doNextStory {
|
||||
|
||||
int nextIndex = [appDelegate indexOfNextStory];
|
||||
|
||||
if (nextIndex == -1) {
|
||||
return;
|
||||
}
|
||||
NSLog(@"nextIndex is %i", nextIndex);
|
||||
|
||||
[self.loadingIndicator stopAnimating];
|
||||
|
||||
|
@ -1193,24 +1191,35 @@ shouldStartLoadWithRequest:(NSURLRequest *)request
|
|||
return;
|
||||
}
|
||||
|
||||
NSLog(@"[appDelegate activeFeedStories] count is %i", [[appDelegate activeFeedStories] count]);
|
||||
NSLog(@"[appDelegate indexOfNextStory] is %i", [appDelegate indexOfNextStory]);
|
||||
|
||||
|
||||
[appDelegate setActiveStory:[[appDelegate activeFeedStories]
|
||||
objectAtIndex:nextIndex]];
|
||||
[appDelegate pushReadStory:[appDelegate.activeStory objectForKey:@"id"]];
|
||||
[self setActiveStory];
|
||||
[self showStory];
|
||||
[appDelegate changeActiveFeedDetailRow];
|
||||
|
||||
[UIView beginAnimations:nil context:nil];
|
||||
[UIView setAnimationDuration:.5];
|
||||
[UIView setAnimationBeginsFromCurrentState:NO];
|
||||
[UIView setAnimationTransition:UIViewAnimationTransitionCurlUp
|
||||
forView:self.view
|
||||
cache:NO];
|
||||
[UIView commitAnimations];
|
||||
if (nextIndex == -1 &&
|
||||
self.appDelegate.feedDetailViewController.feedPage < 50 &&
|
||||
!self.appDelegate.feedDetailViewController.pageFinished &&
|
||||
!self.appDelegate.feedDetailViewController.pageFetching) {
|
||||
|
||||
// Fetch next page and see if it has the unreads.
|
||||
[self.loadingIndicator startAnimating];
|
||||
self.activity.customView = self.loadingIndicator;
|
||||
[self.appDelegate.feedDetailViewController fetchNextPage:^() {
|
||||
[self doNextStory];
|
||||
}];
|
||||
} else {
|
||||
[appDelegate setActiveStory:[[appDelegate activeFeedStories]
|
||||
objectAtIndex:nextIndex]];
|
||||
[appDelegate pushReadStory:[appDelegate.activeStory objectForKey:@"id"]];
|
||||
[self setActiveStory];
|
||||
[self showStory];
|
||||
|
||||
if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) {
|
||||
[appDelegate changeActiveFeedDetailRow];
|
||||
}
|
||||
[UIView beginAnimations:nil context:nil];
|
||||
[UIView setAnimationDuration:.5];
|
||||
[UIView setAnimationBeginsFromCurrentState:NO];
|
||||
[UIView setAnimationTransition:UIViewAnimationTransitionCurlUp
|
||||
forView:self.webView
|
||||
cache:NO];
|
||||
[UIView commitAnimations];
|
||||
}
|
||||
}
|
||||
|
||||
- (IBAction)doPreviousStory {
|
||||
|
|
|
@ -83,6 +83,10 @@
|
|||
return YES;
|
||||
}
|
||||
|
||||
- (void)didRotateFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation {
|
||||
[self.profileTable reloadData];
|
||||
}
|
||||
|
||||
- (void)doCancelButton {
|
||||
[appDelegate.modalNavigationController dismissModalViewControllerAnimated:NO];
|
||||
}
|
||||
|
@ -200,7 +204,9 @@
|
|||
|
||||
// you can only hardcode this due to limitation in apple API that doesn't give you width of grouped cell
|
||||
int width = 300;
|
||||
if (vb.size.width == 540) {
|
||||
if (vb.size.width == 480) {
|
||||
width = 460;
|
||||
} else if (vb.size.width == 540) {
|
||||
width = 478;
|
||||
}
|
||||
|
||||
|
|
|
@ -31,11 +31,9 @@
|
|||
433323CE158968ED0025064D /* FirstTimeUserViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 433323CC158968ED0025064D /* FirstTimeUserViewController.xib */; };
|
||||
433D247E1582EEB400AE9E72 /* AddSiteAutocompleteCell~ipad.xib in Resources */ = {isa = PBXBuildFile; fileRef = 43D045271565BC150085F811 /* AddSiteAutocompleteCell~ipad.xib */; };
|
||||
433D247F1582EEB900AE9E72 /* AddSiteViewController~ipad.xib in Resources */ = {isa = PBXBuildFile; fileRef = 43D045261565BC150085F811 /* AddSiteViewController~ipad.xib */; };
|
||||
433D24811582EEBE00AE9E72 /* FeedDetailViewController~ipad.xib in Resources */ = {isa = PBXBuildFile; fileRef = 43D045211565BC150085F811 /* FeedDetailViewController~ipad.xib */; };
|
||||
433D24821582EEC000AE9E72 /* LoginViewController~ipad.xib in Resources */ = {isa = PBXBuildFile; fileRef = 43D045241565BC150085F811 /* LoginViewController~ipad.xib */; };
|
||||
433D24831582EEC300AE9E72 /* MainWindow~ipad.xib in Resources */ = {isa = PBXBuildFile; fileRef = 43D0451F1565BC150085F811 /* MainWindow~ipad.xib */; };
|
||||
433D24841582EEC500AE9E72 /* MoveSiteViewController~ipad.xib in Resources */ = {isa = PBXBuildFile; fileRef = 43D045281565BC150085F811 /* MoveSiteViewController~ipad.xib */; };
|
||||
433D24851582EEC800AE9E72 /* NewsBlurViewController~ipad.xib in Resources */ = {isa = PBXBuildFile; fileRef = 43D045201565BC150085F811 /* NewsBlurViewController~ipad.xib */; };
|
||||
433D24861582EECA00AE9E72 /* OriginalStoryViewController~ipad.xib in Resources */ = {isa = PBXBuildFile; fileRef = 43D045251565BC150085F811 /* OriginalStoryViewController~ipad.xib */; };
|
||||
433D24871582EECD00AE9E72 /* StoryDetailViewController~ipad.xib in Resources */ = {isa = PBXBuildFile; fileRef = 43D045221565BC150085F811 /* StoryDetailViewController~ipad.xib */; };
|
||||
436ACA8D15BF1088004E01CC /* NBContainerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 436ACA8C15BF1088004E01CC /* NBContainerViewController.m */; };
|
||||
|
@ -218,7 +216,6 @@
|
|||
43C95C49158BEC450086C69B /* GoogleReaderViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 43C95C47158BEC440086C69B /* GoogleReaderViewController.xib */; };
|
||||
43C95C4B158BF8810086C69B /* google_reader_selected_background.png in Resources */ = {isa = PBXBuildFile; fileRef = 43C95C4A158BF8810086C69B /* google_reader_selected_background.png */; };
|
||||
43D818A315B940C200733444 /* DataUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 43D818A215B940C200733444 /* DataUtilities.m */; };
|
||||
43DACC4015BDE47F004A938B /* StoryDetailContainerViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 43DACC3E15BDE47F004A938B /* StoryDetailContainerViewController.xib */; };
|
||||
43E8381E15BC73EB000553BE /* FirstTimeUserAddFriendsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 43E8381615BC73EA000553BE /* FirstTimeUserAddFriendsViewController.m */; };
|
||||
43E8381F15BC73EB000553BE /* FirstTimeUserAddFriendsViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 43E8381715BC73EB000553BE /* FirstTimeUserAddFriendsViewController.xib */; };
|
||||
43E8382015BC73EB000553BE /* FirstTimeUserAddNewsBlurViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 43E8381915BC73EB000553BE /* FirstTimeUserAddNewsBlurViewController.m */; };
|
||||
|
@ -362,7 +359,7 @@
|
|||
436ACA8C15BF1088004E01CC /* NBContainerViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NBContainerViewController.m; sourceTree = "<group>"; };
|
||||
43763ACE158F90B100B3DBE2 /* FontSettingsViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FontSettingsViewController.h; sourceTree = "<group>"; };
|
||||
43763ACF158F90B100B3DBE2 /* FontSettingsViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FontSettingsViewController.m; sourceTree = "<group>"; };
|
||||
43763AD0158F90B100B3DBE2 /* FontSettingsViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = FontSettingsViewController.xib; path = Classes/FontSettingsViewController.xib; sourceTree = "<group>"; };
|
||||
43763AD0158F90B100B3DBE2 /* FontSettingsViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = FontSettingsViewController.xib; path = ../Classes/FontSettingsViewController.xib; sourceTree = "<group>"; };
|
||||
437AA8B815929D51005463F5 /* zepto.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; name = zepto.js; path = ../zepto.js; sourceTree = "<group>"; };
|
||||
437AA8BD15929DA7005463F5 /* storyDetailView.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; name = storyDetailView.js; path = ../storyDetailView.js; sourceTree = "<group>"; };
|
||||
437AA8BF15929DFA005463F5 /* storyDetailView.css */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.css; name = storyDetailView.css; path = ../storyDetailView.css; sourceTree = "<group>"; };
|
||||
|
@ -577,8 +574,6 @@
|
|||
43C95C47158BEC440086C69B /* GoogleReaderViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = GoogleReaderViewController.xib; path = Classes/GoogleReaderViewController.xib; sourceTree = "<group>"; };
|
||||
43C95C4A158BF8810086C69B /* google_reader_selected_background.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = google_reader_selected_background.png; sourceTree = "<group>"; };
|
||||
43D0451F1565BC150085F811 /* MainWindow~ipad.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = "MainWindow~ipad.xib"; path = "Resources-iPad/MainWindow~ipad.xib"; sourceTree = "<group>"; };
|
||||
43D045201565BC150085F811 /* NewsBlurViewController~ipad.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = "NewsBlurViewController~ipad.xib"; path = "Resources-iPad/NewsBlurViewController~ipad.xib"; sourceTree = "<group>"; };
|
||||
43D045211565BC150085F811 /* FeedDetailViewController~ipad.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = "FeedDetailViewController~ipad.xib"; path = "Resources-iPad/Classes/FeedDetailViewController~ipad.xib"; sourceTree = "<group>"; };
|
||||
43D045221565BC150085F811 /* StoryDetailViewController~ipad.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = "StoryDetailViewController~ipad.xib"; path = "Resources-iPad/Classes/StoryDetailViewController~ipad.xib"; sourceTree = "<group>"; };
|
||||
43D045241565BC150085F811 /* LoginViewController~ipad.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = "LoginViewController~ipad.xib"; path = "Resources-iPad/Classes/LoginViewController~ipad.xib"; sourceTree = "<group>"; };
|
||||
43D045251565BC150085F811 /* OriginalStoryViewController~ipad.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = "OriginalStoryViewController~ipad.xib"; path = "Resources-iPad/Classes/OriginalStoryViewController~ipad.xib"; sourceTree = "<group>"; };
|
||||
|
@ -587,7 +582,6 @@
|
|||
43D045281565BC150085F811 /* MoveSiteViewController~ipad.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = "MoveSiteViewController~ipad.xib"; path = "Resources-iPad/Classes/MoveSiteViewController~ipad.xib"; sourceTree = "<group>"; };
|
||||
43D818A115B940C200733444 /* DataUtilities.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DataUtilities.h; sourceTree = "<group>"; };
|
||||
43D818A215B940C200733444 /* DataUtilities.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DataUtilities.m; sourceTree = "<group>"; };
|
||||
43DACC3E15BDE47F004A938B /* StoryDetailContainerViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = StoryDetailContainerViewController.xib; path = Classes/StoryDetailContainerViewController.xib; sourceTree = "<group>"; };
|
||||
43E8381515BC73EA000553BE /* FirstTimeUserAddFriendsViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FirstTimeUserAddFriendsViewController.h; sourceTree = "<group>"; };
|
||||
43E8381615BC73EA000553BE /* FirstTimeUserAddFriendsViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FirstTimeUserAddFriendsViewController.m; sourceTree = "<group>"; };
|
||||
43E8381715BC73EB000553BE /* FirstTimeUserAddFriendsViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = FirstTimeUserAddFriendsViewController.xib; sourceTree = "<group>"; };
|
||||
|
@ -1263,6 +1257,7 @@
|
|||
43B8F019156603170008733D /* AddSiteViewController.xib */,
|
||||
43B8F01B156603170008733D /* FeedDetailViewController.xib */,
|
||||
439DAB1F1590DA350019B0EB /* FeedsMenuViewController.xib */,
|
||||
43763AD0158F90B100B3DBE2 /* FontSettingsViewController.xib */,
|
||||
43B8F01C156603170008733D /* LoginViewController.xib */,
|
||||
43B8F01D156603170008733D /* MainWindow.xib */,
|
||||
43B8F01E156603170008733D /* MoveSiteViewController.xib */,
|
||||
|
@ -1281,9 +1276,6 @@
|
|||
433323B5158901A40025064D /* Images */,
|
||||
43D045261565BC150085F811 /* AddSiteViewController~ipad.xib */,
|
||||
437F974B15ACA0ED0007136B /* DashboardViewController.xib */,
|
||||
43D045211565BC150085F811 /* FeedDetailViewController~ipad.xib */,
|
||||
43D045201565BC150085F811 /* NewsBlurViewController~ipad.xib */,
|
||||
43763AD0158F90B100B3DBE2 /* FontSettingsViewController.xib */,
|
||||
43C95C47158BEC440086C69B /* GoogleReaderViewController.xib */,
|
||||
43D045241565BC150085F811 /* LoginViewController~ipad.xib */,
|
||||
43D0451F1565BC150085F811 /* MainWindow~ipad.xib */,
|
||||
|
@ -1291,7 +1283,6 @@
|
|||
43D045251565BC150085F811 /* OriginalStoryViewController~ipad.xib */,
|
||||
43D045271565BC150085F811 /* AddSiteAutocompleteCell~ipad.xib */,
|
||||
43D045221565BC150085F811 /* StoryDetailViewController~ipad.xib */,
|
||||
43DACC3E15BDE47F004A938B /* StoryDetailContainerViewController.xib */,
|
||||
437AA8C9159394E2005463F5 /* ShareViewController~ipad.xib */,
|
||||
);
|
||||
name = "Resources-iPad";
|
||||
|
@ -1771,11 +1762,9 @@
|
|||
43B8F02B156603180008733D /* StoryDetailViewController.xib in Resources */,
|
||||
433D247E1582EEB400AE9E72 /* AddSiteAutocompleteCell~ipad.xib in Resources */,
|
||||
433D247F1582EEB900AE9E72 /* AddSiteViewController~ipad.xib in Resources */,
|
||||
433D24811582EEBE00AE9E72 /* FeedDetailViewController~ipad.xib in Resources */,
|
||||
433D24821582EEC000AE9E72 /* LoginViewController~ipad.xib in Resources */,
|
||||
433D24831582EEC300AE9E72 /* MainWindow~ipad.xib in Resources */,
|
||||
433D24841582EEC500AE9E72 /* MoveSiteViewController~ipad.xib in Resources */,
|
||||
433D24851582EEC800AE9E72 /* NewsBlurViewController~ipad.xib in Resources */,
|
||||
433D24861582EECA00AE9E72 /* OriginalStoryViewController~ipad.xib in Resources */,
|
||||
433D24871582EECD00AE9E72 /* StoryDetailViewController~ipad.xib in Resources */,
|
||||
433323B8158901A40025064D /* fountain_pen.png in Resources */,
|
||||
|
@ -1903,7 +1892,6 @@
|
|||
43E8381F15BC73EB000553BE /* FirstTimeUserAddFriendsViewController.xib in Resources */,
|
||||
43E8382115BC73EB000553BE /* FirstTimeUserAddNewsBlurViewController.xib in Resources */,
|
||||
43E8382315BC73EB000553BE /* FirstTimeUserAddSitesViewController.xib in Resources */,
|
||||
43DACC4015BDE47F004A938B /* StoryDetailContainerViewController.xib in Resources */,
|
||||
432E29FB15BFBCA10006EA51 /* back.png in Resources */,
|
||||
432E29FC15BFBCA10006EA51 /* back@2x.png in Resources */,
|
||||
432E2A0315C079770006EA51 /* folder_white.png in Resources */,
|
||||
|
|
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
@ -11,11 +11,9 @@
|
|||
<string key="NS.object.0">1181</string>
|
||||
</object>
|
||||
<array key="IBDocument.IntegratedClassDependencies">
|
||||
<string>IBUIBarButtonItem</string>
|
||||
<string>IBUIToolbar</string>
|
||||
<string>IBUITextView</string>
|
||||
<string>IBUIView</string>
|
||||
<string>IBUIButton</string>
|
||||
<string>IBUIView</string>
|
||||
<string>IBProxyObject</string>
|
||||
</array>
|
||||
<array key="IBDocument.PluginDependencies">
|
||||
|
@ -38,51 +36,10 @@
|
|||
<reference key="NSNextResponder"/>
|
||||
<int key="NSvFlags">274</int>
|
||||
<array class="NSMutableArray" key="NSSubviews">
|
||||
<object class="IBUIToolbar" id="547172857">
|
||||
<reference key="NSNextResponder" ref="191373211"/>
|
||||
<int key="NSvFlags">266</int>
|
||||
<string key="NSFrameSize">{320, 44}</string>
|
||||
<reference key="NSSuperview" ref="191373211"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="934266237"/>
|
||||
<string key="NSReuseIdentifierKey">_NS:9</string>
|
||||
<bool key="IBUIOpaque">NO</bool>
|
||||
<bool key="IBUIClearsContextBeforeDrawing">NO</bool>
|
||||
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
||||
<array class="NSMutableArray" key="IBUIItems">
|
||||
<object class="IBUIBarButtonItem" id="940085591">
|
||||
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
||||
<int key="IBUIStyle">2</int>
|
||||
<reference key="IBUIToolbar" ref="547172857"/>
|
||||
<int key="IBUISystemItemIdentifier">1</int>
|
||||
</object>
|
||||
<object class="IBUIBarButtonItem" id="333997740">
|
||||
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
||||
<reference key="IBUIToolbar" ref="547172857"/>
|
||||
<int key="IBUISystemItemIdentifier">5</int>
|
||||
</object>
|
||||
<object class="IBUIBarButtonItem" id="729496549">
|
||||
<string key="IBUITitle">Item</string>
|
||||
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
||||
<reference key="IBUIToolbar" ref="547172857"/>
|
||||
</object>
|
||||
<object class="IBUIBarButtonItem" id="326380287">
|
||||
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
||||
<reference key="IBUIToolbar" ref="547172857"/>
|
||||
<int key="IBUISystemItemIdentifier">5</int>
|
||||
</object>
|
||||
<object class="IBUIBarButtonItem" id="420096809">
|
||||
<string key="IBUITitle">Share on Blurblog</string>
|
||||
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
||||
<int key="IBUIStyle">1</int>
|
||||
<reference key="IBUIToolbar" ref="547172857"/>
|
||||
</object>
|
||||
</array>
|
||||
</object>
|
||||
<object class="IBUITextView" id="934266237">
|
||||
<reference key="NSNextResponder" ref="191373211"/>
|
||||
<int key="NSvFlags">292</int>
|
||||
<string key="NSFrame">{{20, 60}, {280, 114}}</string>
|
||||
<string key="NSFrame">{{20, 20}, {280, 114}}</string>
|
||||
<reference key="NSSuperview" ref="191373211"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="1024893655"/>
|
||||
|
@ -113,7 +70,7 @@
|
|||
<object class="IBUIButton" id="1024893655">
|
||||
<reference key="NSNextResponder" ref="191373211"/>
|
||||
<int key="NSvFlags">292</int>
|
||||
<string key="NSFrame">{{228, 182}, {32, 32}}</string>
|
||||
<string key="NSFrame">{{228, 142}, {32, 32}}</string>
|
||||
<reference key="NSSuperview" ref="191373211"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="478264421"/>
|
||||
|
@ -156,9 +113,10 @@
|
|||
<object class="IBUIButton" id="478264421">
|
||||
<reference key="NSNextResponder" ref="191373211"/>
|
||||
<int key="NSvFlags">292</int>
|
||||
<string key="NSFrame">{{268, 182}, {32, 32}}</string>
|
||||
<string key="NSFrame">{{268, 142}, {32, 32}}</string>
|
||||
<reference key="NSSuperview" ref="191373211"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView"/>
|
||||
<string key="NSReuseIdentifierKey">_NS:9</string>
|
||||
<bool key="IBUIOpaque">NO</bool>
|
||||
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
||||
|
@ -183,10 +141,10 @@
|
|||
<reference key="IBUIFont" ref="969552267"/>
|
||||
</object>
|
||||
</array>
|
||||
<string key="NSFrame">{{0, 20}, {320, 460}}</string>
|
||||
<string key="NSFrame">{{0, 44}, {320, 436}}</string>
|
||||
<reference key="NSSuperview"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="547172857"/>
|
||||
<reference key="NSNextKeyView"/>
|
||||
<object class="NSColor" key="IBUIBackgroundColor">
|
||||
<int key="NSColorSpace">3</int>
|
||||
<bytes key="NSWhite">MQA</bytes>
|
||||
|
@ -194,30 +152,14 @@
|
|||
<int key="NSID">2</int>
|
||||
</object>
|
||||
</object>
|
||||
<object class="IBUISimulatedStatusBarMetrics" key="IBUISimulatedStatusBarMetrics">
|
||||
<int key="IBUIStatusBarStyle">2</int>
|
||||
<object class="IBUISimulatedNavigationBarMetrics" key="IBUISimulatedTopBarMetrics">
|
||||
<bool key="IBUIPrompted">NO</bool>
|
||||
</object>
|
||||
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
||||
</object>
|
||||
</array>
|
||||
<object class="IBObjectContainer" key="IBDocument.Objects">
|
||||
<array class="NSMutableArray" key="connectionRecords">
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBCocoaTouchOutletConnection" key="connection">
|
||||
<string key="label">commentField</string>
|
||||
<reference key="source" ref="372490531"/>
|
||||
<reference key="destination" ref="934266237"/>
|
||||
</object>
|
||||
<int key="connectionID">13</int>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBCocoaTouchOutletConnection" key="connection">
|
||||
<string key="label">view</string>
|
||||
<reference key="source" ref="372490531"/>
|
||||
<reference key="destination" ref="191373211"/>
|
||||
</object>
|
||||
<int key="connectionID">22</int>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBCocoaTouchOutletConnection" key="connection">
|
||||
<string key="label">twitterButton</string>
|
||||
|
@ -236,35 +178,19 @@
|
|||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBCocoaTouchOutletConnection" key="connection">
|
||||
<string key="label">submitButton</string>
|
||||
<string key="label">commentField</string>
|
||||
<reference key="source" ref="372490531"/>
|
||||
<reference key="destination" ref="420096809"/>
|
||||
<reference key="destination" ref="934266237"/>
|
||||
</object>
|
||||
<int key="connectionID">27</int>
|
||||
<int key="connectionID">13</int>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBCocoaTouchOutletConnection" key="connection">
|
||||
<string key="label">toolbarTitle</string>
|
||||
<string key="label">view</string>
|
||||
<reference key="source" ref="372490531"/>
|
||||
<reference key="destination" ref="729496549"/>
|
||||
<reference key="destination" ref="191373211"/>
|
||||
</object>
|
||||
<int key="connectionID">31</int>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBCocoaTouchEventConnection" key="connection">
|
||||
<string key="label">doCancelButton:</string>
|
||||
<reference key="source" ref="940085591"/>
|
||||
<reference key="destination" ref="372490531"/>
|
||||
</object>
|
||||
<int key="connectionID">17</int>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBCocoaTouchEventConnection" key="connection">
|
||||
<string key="label">doShareThisStory:</string>
|
||||
<reference key="source" ref="420096809"/>
|
||||
<reference key="destination" ref="372490531"/>
|
||||
</object>
|
||||
<int key="connectionID">28</int>
|
||||
<int key="connectionID">22</int>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBCocoaTouchEventConnection" key="connection">
|
||||
|
@ -293,17 +219,6 @@
|
|||
<reference key="children" ref="1000"/>
|
||||
<nil key="parent"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">1</int>
|
||||
<reference key="object" ref="191373211"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="547172857"/>
|
||||
<reference ref="934266237"/>
|
||||
<reference ref="478264421"/>
|
||||
<reference ref="1024893655"/>
|
||||
</array>
|
||||
<reference key="parent" ref="0"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">-1</int>
|
||||
<reference key="object" ref="372490531"/>
|
||||
|
@ -316,36 +231,14 @@
|
|||
<reference key="parent" ref="0"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">3</int>
|
||||
<reference key="object" ref="547172857"/>
|
||||
<int key="objectID">1</int>
|
||||
<reference key="object" ref="191373211"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="940085591"/>
|
||||
<reference ref="333997740"/>
|
||||
<reference ref="420096809"/>
|
||||
<reference ref="729496549"/>
|
||||
<reference ref="326380287"/>
|
||||
<reference ref="934266237"/>
|
||||
<reference ref="1024893655"/>
|
||||
<reference ref="478264421"/>
|
||||
</array>
|
||||
<reference key="parent" ref="191373211"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">4</int>
|
||||
<reference key="object" ref="940085591"/>
|
||||
<reference key="parent" ref="547172857"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">5</int>
|
||||
<reference key="object" ref="333997740"/>
|
||||
<reference key="parent" ref="547172857"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">8</int>
|
||||
<reference key="object" ref="420096809"/>
|
||||
<reference key="parent" ref="547172857"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">10</int>
|
||||
<reference key="object" ref="934266237"/>
|
||||
<reference key="parent" ref="191373211"/>
|
||||
<reference key="parent" ref="0"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">11</int>
|
||||
|
@ -358,14 +251,9 @@
|
|||
<reference key="parent" ref="191373211"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">29</int>
|
||||
<reference key="object" ref="729496549"/>
|
||||
<reference key="parent" ref="547172857"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">30</int>
|
||||
<reference key="object" ref="326380287"/>
|
||||
<reference key="parent" ref="547172857"/>
|
||||
<int key="objectID">10</int>
|
||||
<reference key="object" ref="934266237"/>
|
||||
<reference key="parent" ref="191373211"/>
|
||||
</object>
|
||||
</array>
|
||||
</object>
|
||||
|
@ -380,18 +268,12 @@
|
|||
<real value="2" key="11.IBUIButtonInspectorSelectedStateConfigurationMetadataKey"/>
|
||||
<string key="12.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<real value="2" key="12.IBUIButtonInspectorSelectedStateConfigurationMetadataKey"/>
|
||||
<string key="29.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<string key="3.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<string key="30.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<string key="4.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<string key="5.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<string key="8.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
</dictionary>
|
||||
<dictionary class="NSMutableDictionary" key="unlocalizedProperties"/>
|
||||
<nil key="activeLocalization"/>
|
||||
<dictionary class="NSMutableDictionary" key="localizations"/>
|
||||
<nil key="sourceID"/>
|
||||
<int key="maxID">31</int>
|
||||
<int key="maxID">39</int>
|
||||
</object>
|
||||
<object class="IBClassDescriber" key="IBDocument.Classes">
|
||||
<array class="NSMutableArray" key="referencedPartialClassDescriptions">
|
||||
|
@ -535,30 +417,30 @@
|
|||
<object class="IBPartialClassDescription">
|
||||
<string key="className">DashboardViewController</string>
|
||||
<string key="superclassName">UIViewController</string>
|
||||
<object class="NSMutableDictionary" key="actions">
|
||||
<string key="NS.key.0">doLogout:</string>
|
||||
<string key="NS.object.0">id</string>
|
||||
</object>
|
||||
<object class="NSMutableDictionary" key="actionInfosByName">
|
||||
<string key="NS.key.0">doLogout:</string>
|
||||
<object class="IBActionInfo" key="NS.object.0">
|
||||
<dictionary class="NSMutableDictionary" key="actions">
|
||||
<string key="doLogout:">id</string>
|
||||
<string key="tapSegmentedButton:">id</string>
|
||||
</dictionary>
|
||||
<dictionary class="NSMutableDictionary" key="actionInfosByName">
|
||||
<object class="IBActionInfo" key="doLogout:">
|
||||
<string key="name">doLogout:</string>
|
||||
<string key="candidateClassName">id</string>
|
||||
</object>
|
||||
</object>
|
||||
<object class="IBActionInfo" key="tapSegmentedButton:">
|
||||
<string key="name">tapSegmentedButton:</string>
|
||||
<string key="candidateClassName">id</string>
|
||||
</object>
|
||||
</dictionary>
|
||||
<dictionary class="NSMutableDictionary" key="outlets">
|
||||
<string key="activitesLabel">UILabel</string>
|
||||
<string key="activitiesModule">ActivityModule</string>
|
||||
<string key="appDelegate">NewsBlurAppDelegate</string>
|
||||
<string key="header">UIImageView</string>
|
||||
<string key="interactionsLabel">UILabel</string>
|
||||
<string key="feedbackWebView">UIWebView</string>
|
||||
<string key="interactionsModule">InteractionsModule</string>
|
||||
<string key="segmentedButton">UISegmentedControl</string>
|
||||
<string key="toolbar">UIToolbar</string>
|
||||
<string key="topToolbar">UIToolbar</string>
|
||||
</dictionary>
|
||||
<dictionary class="NSMutableDictionary" key="toOneOutletInfosByName">
|
||||
<object class="IBToOneOutletInfo" key="activitesLabel">
|
||||
<string key="name">activitesLabel</string>
|
||||
<string key="candidateClassName">UILabel</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="activitiesModule">
|
||||
<string key="name">activitiesModule</string>
|
||||
<string key="candidateClassName">ActivityModule</string>
|
||||
|
@ -567,46 +449,32 @@
|
|||
<string key="name">appDelegate</string>
|
||||
<string key="candidateClassName">NewsBlurAppDelegate</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="header">
|
||||
<string key="name">header</string>
|
||||
<string key="candidateClassName">UIImageView</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="interactionsLabel">
|
||||
<string key="name">interactionsLabel</string>
|
||||
<string key="candidateClassName">UILabel</string>
|
||||
<object class="IBToOneOutletInfo" key="feedbackWebView">
|
||||
<string key="name">feedbackWebView</string>
|
||||
<string key="candidateClassName">UIWebView</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="interactionsModule">
|
||||
<string key="name">interactionsModule</string>
|
||||
<string key="candidateClassName">InteractionsModule</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="segmentedButton">
|
||||
<string key="name">segmentedButton</string>
|
||||
<string key="candidateClassName">UISegmentedControl</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="toolbar">
|
||||
<string key="name">toolbar</string>
|
||||
<string key="candidateClassName">UIToolbar</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="topToolbar">
|
||||
<string key="name">topToolbar</string>
|
||||
<string key="candidateClassName">UIToolbar</string>
|
||||
</object>
|
||||
</dictionary>
|
||||
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
||||
<string key="majorKey">IBProjectSource</string>
|
||||
<string key="minorKey">./Classes/DashboardViewController.h</string>
|
||||
</object>
|
||||
</object>
|
||||
<object class="IBPartialClassDescription">
|
||||
<string key="className">FeedDashboardViewController</string>
|
||||
<string key="superclassName">UIViewController</string>
|
||||
<dictionary class="NSMutableDictionary" key="outlets">
|
||||
<string key="appDelegate">NewsBlurAppDelegate</string>
|
||||
<string key="storyLabel">UILabel</string>
|
||||
</dictionary>
|
||||
<dictionary class="NSMutableDictionary" key="toOneOutletInfosByName">
|
||||
<object class="IBToOneOutletInfo" key="appDelegate">
|
||||
<string key="name">appDelegate</string>
|
||||
<string key="candidateClassName">NewsBlurAppDelegate</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="storyLabel">
|
||||
<string key="name">storyLabel</string>
|
||||
<string key="candidateClassName">UILabel</string>
|
||||
</object>
|
||||
</dictionary>
|
||||
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
||||
<string key="majorKey">IBProjectSource</string>
|
||||
<string key="minorKey">./Classes/FeedDashboardViewController.h</string>
|
||||
</object>
|
||||
</object>
|
||||
<object class="IBPartialClassDescription">
|
||||
<string key="className">FeedDetailViewController</string>
|
||||
<string key="superclassName">BaseViewController</string>
|
||||
|
@ -676,21 +544,9 @@
|
|||
<object class="IBPartialClassDescription">
|
||||
<string key="className">FeedsMenuViewController</string>
|
||||
<string key="superclassName">UIViewController</string>
|
||||
<object class="NSMutableDictionary" key="actions">
|
||||
<string key="NS.key.0">tapCancelButton:</string>
|
||||
<string key="NS.object.0">UIBarButtonItem</string>
|
||||
</object>
|
||||
<object class="NSMutableDictionary" key="actionInfosByName">
|
||||
<string key="NS.key.0">tapCancelButton:</string>
|
||||
<object class="IBActionInfo" key="NS.object.0">
|
||||
<string key="name">tapCancelButton:</string>
|
||||
<string key="candidateClassName">UIBarButtonItem</string>
|
||||
</object>
|
||||
</object>
|
||||
<dictionary class="NSMutableDictionary" key="outlets">
|
||||
<string key="appDelegate">NewsBlurAppDelegate</string>
|
||||
<string key="menuTableView">UITableView</string>
|
||||
<string key="toolbar">UIToolbar</string>
|
||||
</dictionary>
|
||||
<dictionary class="NSMutableDictionary" key="toOneOutletInfosByName">
|
||||
<object class="IBToOneOutletInfo" key="appDelegate">
|
||||
|
@ -701,10 +557,6 @@
|
|||
<string key="name">menuTableView</string>
|
||||
<string key="candidateClassName">UITableView</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="toolbar">
|
||||
<string key="name">toolbar</string>
|
||||
<string key="candidateClassName">UIToolbar</string>
|
||||
</object>
|
||||
</dictionary>
|
||||
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
||||
<string key="majorKey">IBProjectSource</string>
|
||||
|
@ -712,7 +564,34 @@
|
|||
</object>
|
||||
</object>
|
||||
<object class="IBPartialClassDescription">
|
||||
<string key="className">FirstTimeUserViewController</string>
|
||||
<string key="className">FindSitesViewController</string>
|
||||
<string key="superclassName">UIViewController</string>
|
||||
<dictionary class="NSMutableDictionary" key="outlets">
|
||||
<string key="appDelegate">NewsBlurAppDelegate</string>
|
||||
<string key="sitesSearchBar">UISearchBar</string>
|
||||
<string key="sitesTable">UITableView</string>
|
||||
</dictionary>
|
||||
<dictionary class="NSMutableDictionary" key="toOneOutletInfosByName">
|
||||
<object class="IBToOneOutletInfo" key="appDelegate">
|
||||
<string key="name">appDelegate</string>
|
||||
<string key="candidateClassName">NewsBlurAppDelegate</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="sitesSearchBar">
|
||||
<string key="name">sitesSearchBar</string>
|
||||
<string key="candidateClassName">UISearchBar</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="sitesTable">
|
||||
<string key="name">sitesTable</string>
|
||||
<string key="candidateClassName">UITableView</string>
|
||||
</object>
|
||||
</dictionary>
|
||||
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
||||
<string key="majorKey">IBProjectSource</string>
|
||||
<string key="minorKey">./Classes/FindSitesViewController.h</string>
|
||||
</object>
|
||||
</object>
|
||||
<object class="IBPartialClassDescription">
|
||||
<string key="className">FirstTimeUserAddFriendsViewController</string>
|
||||
<string key="superclassName">UIViewController</string>
|
||||
<dictionary class="NSMutableDictionary" key="actions">
|
||||
<string key="tapCategoryButton:">id</string>
|
||||
|
@ -746,6 +625,7 @@
|
|||
<string key="googleReaderButton">UIButton</string>
|
||||
<string key="logo">UIImageView</string>
|
||||
<string key="nextButton">UIBarButtonItem</string>
|
||||
<string key="previousButton">UIBarButtonItem</string>
|
||||
<string key="toolbar">UIToolbar</string>
|
||||
<string key="toolbarTitle">UIButton</string>
|
||||
<string key="welcomeView">UIView</string>
|
||||
|
@ -779,6 +659,10 @@
|
|||
<string key="name">nextButton</string>
|
||||
<string key="candidateClassName">UIBarButtonItem</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="previousButton">
|
||||
<string key="name">previousButton</string>
|
||||
<string key="candidateClassName">UIBarButtonItem</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="toolbar">
|
||||
<string key="name">toolbar</string>
|
||||
<string key="candidateClassName">UIToolbar</string>
|
||||
|
@ -792,6 +676,226 @@
|
|||
<string key="candidateClassName">UIView</string>
|
||||
</object>
|
||||
</dictionary>
|
||||
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
||||
<string key="majorKey">IBProjectSource</string>
|
||||
<string key="minorKey">./Classes/FirstTimeUserAddFriendsViewController.h</string>
|
||||
</object>
|
||||
</object>
|
||||
<object class="IBPartialClassDescription">
|
||||
<string key="className">FirstTimeUserAddNewsBlurViewController</string>
|
||||
<string key="superclassName">UIViewController</string>
|
||||
<dictionary class="NSMutableDictionary" key="actions">
|
||||
<string key="tapCategoryButton:">id</string>
|
||||
<string key="tapGoogleReaderButton">id</string>
|
||||
<string key="tapNewsBlurButton:">id</string>
|
||||
<string key="tapNextButton">id</string>
|
||||
</dictionary>
|
||||
<dictionary class="NSMutableDictionary" key="actionInfosByName">
|
||||
<object class="IBActionInfo" key="tapCategoryButton:">
|
||||
<string key="name">tapCategoryButton:</string>
|
||||
<string key="candidateClassName">id</string>
|
||||
</object>
|
||||
<object class="IBActionInfo" key="tapGoogleReaderButton">
|
||||
<string key="name">tapGoogleReaderButton</string>
|
||||
<string key="candidateClassName">id</string>
|
||||
</object>
|
||||
<object class="IBActionInfo" key="tapNewsBlurButton:">
|
||||
<string key="name">tapNewsBlurButton:</string>
|
||||
<string key="candidateClassName">id</string>
|
||||
</object>
|
||||
<object class="IBActionInfo" key="tapNextButton">
|
||||
<string key="name">tapNextButton</string>
|
||||
<string key="candidateClassName">id</string>
|
||||
</object>
|
||||
</dictionary>
|
||||
<dictionary class="NSMutableDictionary" key="outlets">
|
||||
<string key="addFriendsView">UIView</string>
|
||||
<string key="addNewsBlurView">UIView</string>
|
||||
<string key="addSitesView">UIView</string>
|
||||
<string key="appDelegate">NewsBlurAppDelegate</string>
|
||||
<string key="googleReaderButton">UIButton</string>
|
||||
<string key="logo">UIImageView</string>
|
||||
<string key="nextButton">UIBarButtonItem</string>
|
||||
<string key="previousButton">UIBarButtonItem</string>
|
||||
<string key="toolbar">UIToolbar</string>
|
||||
<string key="toolbarTitle">UIButton</string>
|
||||
<string key="welcomeView">UIView</string>
|
||||
</dictionary>
|
||||
<dictionary class="NSMutableDictionary" key="toOneOutletInfosByName">
|
||||
<object class="IBToOneOutletInfo" key="addFriendsView">
|
||||
<string key="name">addFriendsView</string>
|
||||
<string key="candidateClassName">UIView</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="addNewsBlurView">
|
||||
<string key="name">addNewsBlurView</string>
|
||||
<string key="candidateClassName">UIView</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="addSitesView">
|
||||
<string key="name">addSitesView</string>
|
||||
<string key="candidateClassName">UIView</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="appDelegate">
|
||||
<string key="name">appDelegate</string>
|
||||
<string key="candidateClassName">NewsBlurAppDelegate</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="googleReaderButton">
|
||||
<string key="name">googleReaderButton</string>
|
||||
<string key="candidateClassName">UIButton</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="logo">
|
||||
<string key="name">logo</string>
|
||||
<string key="candidateClassName">UIImageView</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="nextButton">
|
||||
<string key="name">nextButton</string>
|
||||
<string key="candidateClassName">UIBarButtonItem</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="previousButton">
|
||||
<string key="name">previousButton</string>
|
||||
<string key="candidateClassName">UIBarButtonItem</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="toolbar">
|
||||
<string key="name">toolbar</string>
|
||||
<string key="candidateClassName">UIToolbar</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="toolbarTitle">
|
||||
<string key="name">toolbarTitle</string>
|
||||
<string key="candidateClassName">UIButton</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="welcomeView">
|
||||
<string key="name">welcomeView</string>
|
||||
<string key="candidateClassName">UIView</string>
|
||||
</object>
|
||||
</dictionary>
|
||||
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
||||
<string key="majorKey">IBProjectSource</string>
|
||||
<string key="minorKey">./Classes/FirstTimeUserAddNewsBlurViewController.h</string>
|
||||
</object>
|
||||
</object>
|
||||
<object class="IBPartialClassDescription">
|
||||
<string key="className">FirstTimeUserAddSitesViewController</string>
|
||||
<string key="superclassName">UIViewController</string>
|
||||
<dictionary class="NSMutableDictionary" key="actions">
|
||||
<string key="tapCategoryButton:">id</string>
|
||||
<string key="tapGoogleReaderButton">id</string>
|
||||
<string key="tapNewsBlurButton:">id</string>
|
||||
<string key="tapNextButton">id</string>
|
||||
</dictionary>
|
||||
<dictionary class="NSMutableDictionary" key="actionInfosByName">
|
||||
<object class="IBActionInfo" key="tapCategoryButton:">
|
||||
<string key="name">tapCategoryButton:</string>
|
||||
<string key="candidateClassName">id</string>
|
||||
</object>
|
||||
<object class="IBActionInfo" key="tapGoogleReaderButton">
|
||||
<string key="name">tapGoogleReaderButton</string>
|
||||
<string key="candidateClassName">id</string>
|
||||
</object>
|
||||
<object class="IBActionInfo" key="tapNewsBlurButton:">
|
||||
<string key="name">tapNewsBlurButton:</string>
|
||||
<string key="candidateClassName">id</string>
|
||||
</object>
|
||||
<object class="IBActionInfo" key="tapNextButton">
|
||||
<string key="name">tapNextButton</string>
|
||||
<string key="candidateClassName">id</string>
|
||||
</object>
|
||||
</dictionary>
|
||||
<dictionary class="NSMutableDictionary" key="outlets">
|
||||
<string key="addFriendsView">UIView</string>
|
||||
<string key="addNewsBlurView">UIView</string>
|
||||
<string key="addSitesView">UIView</string>
|
||||
<string key="appDelegate">NewsBlurAppDelegate</string>
|
||||
<string key="googleReaderButton">UIButton</string>
|
||||
<string key="logo">UIImageView</string>
|
||||
<string key="nextButton">UIBarButtonItem</string>
|
||||
<string key="previousButton">UIBarButtonItem</string>
|
||||
<string key="toolbar">UIToolbar</string>
|
||||
<string key="toolbarTitle">UIButton</string>
|
||||
<string key="welcomeView">UIView</string>
|
||||
</dictionary>
|
||||
<dictionary class="NSMutableDictionary" key="toOneOutletInfosByName">
|
||||
<object class="IBToOneOutletInfo" key="addFriendsView">
|
||||
<string key="name">addFriendsView</string>
|
||||
<string key="candidateClassName">UIView</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="addNewsBlurView">
|
||||
<string key="name">addNewsBlurView</string>
|
||||
<string key="candidateClassName">UIView</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="addSitesView">
|
||||
<string key="name">addSitesView</string>
|
||||
<string key="candidateClassName">UIView</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="appDelegate">
|
||||
<string key="name">appDelegate</string>
|
||||
<string key="candidateClassName">NewsBlurAppDelegate</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="googleReaderButton">
|
||||
<string key="name">googleReaderButton</string>
|
||||
<string key="candidateClassName">UIButton</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="logo">
|
||||
<string key="name">logo</string>
|
||||
<string key="candidateClassName">UIImageView</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="nextButton">
|
||||
<string key="name">nextButton</string>
|
||||
<string key="candidateClassName">UIBarButtonItem</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="previousButton">
|
||||
<string key="name">previousButton</string>
|
||||
<string key="candidateClassName">UIBarButtonItem</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="toolbar">
|
||||
<string key="name">toolbar</string>
|
||||
<string key="candidateClassName">UIToolbar</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="toolbarTitle">
|
||||
<string key="name">toolbarTitle</string>
|
||||
<string key="candidateClassName">UIButton</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="welcomeView">
|
||||
<string key="name">welcomeView</string>
|
||||
<string key="candidateClassName">UIView</string>
|
||||
</object>
|
||||
</dictionary>
|
||||
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
||||
<string key="majorKey">IBProjectSource</string>
|
||||
<string key="minorKey">./Classes/FirstTimeUserAddSitesViewController.h</string>
|
||||
</object>
|
||||
</object>
|
||||
<object class="IBPartialClassDescription">
|
||||
<string key="className">FirstTimeUserViewController</string>
|
||||
<string key="superclassName">UIViewController</string>
|
||||
<object class="NSMutableDictionary" key="actions">
|
||||
<string key="NS.key.0">tapNextButton</string>
|
||||
<string key="NS.object.0">id</string>
|
||||
</object>
|
||||
<object class="NSMutableDictionary" key="actionInfosByName">
|
||||
<string key="NS.key.0">tapNextButton</string>
|
||||
<object class="IBActionInfo" key="NS.object.0">
|
||||
<string key="name">tapNextButton</string>
|
||||
<string key="candidateClassName">id</string>
|
||||
</object>
|
||||
</object>
|
||||
<dictionary class="NSMutableDictionary" key="outlets">
|
||||
<string key="appDelegate">NewsBlurAppDelegate</string>
|
||||
<string key="logo">UIImageView</string>
|
||||
<string key="nextButton">UIBarButtonItem</string>
|
||||
</dictionary>
|
||||
<dictionary class="NSMutableDictionary" key="toOneOutletInfosByName">
|
||||
<object class="IBToOneOutletInfo" key="appDelegate">
|
||||
<string key="name">appDelegate</string>
|
||||
<string key="candidateClassName">NewsBlurAppDelegate</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="logo">
|
||||
<string key="name">logo</string>
|
||||
<string key="candidateClassName">UIImageView</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="nextButton">
|
||||
<string key="name">nextButton</string>
|
||||
<string key="candidateClassName">UIBarButtonItem</string>
|
||||
</object>
|
||||
</dictionary>
|
||||
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
||||
<string key="majorKey">IBProjectSource</string>
|
||||
<string key="minorKey">./Classes/FirstTimeUserViewController.h</string>
|
||||
|
@ -853,27 +957,22 @@
|
|||
<string key="superclassName">UIViewController</string>
|
||||
<dictionary class="NSMutableDictionary" key="outlets">
|
||||
<string key="appDelegate">NewsBlurAppDelegate</string>
|
||||
<string key="friendSearchBar">UISearchBar</string>
|
||||
<string key="friendsTable">UITableView</string>
|
||||
<string key="searchBar">UISearchBar</string>
|
||||
<string key="searchDisplayController">UISearchDisplayController</string>
|
||||
</dictionary>
|
||||
<dictionary class="NSMutableDictionary" key="toOneOutletInfosByName">
|
||||
<object class="IBToOneOutletInfo" key="appDelegate">
|
||||
<string key="name">appDelegate</string>
|
||||
<string key="candidateClassName">NewsBlurAppDelegate</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="friendSearchBar">
|
||||
<string key="name">friendSearchBar</string>
|
||||
<string key="candidateClassName">UISearchBar</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="friendsTable">
|
||||
<string key="name">friendsTable</string>
|
||||
<string key="candidateClassName">UITableView</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="searchBar">
|
||||
<string key="name">searchBar</string>
|
||||
<string key="candidateClassName">UISearchBar</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="searchDisplayController">
|
||||
<string key="name">searchDisplayController</string>
|
||||
<string key="candidateClassName">UISearchDisplayController</string>
|
||||
</object>
|
||||
</dictionary>
|
||||
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
||||
<string key="majorKey">IBProjectSource</string>
|
||||
|
@ -1047,57 +1146,6 @@
|
|||
<string key="minorKey">./Classes/LoginViewController.h</string>
|
||||
</object>
|
||||
</object>
|
||||
<object class="IBPartialClassDescription">
|
||||
<string key="className">MGSplitViewController</string>
|
||||
<string key="superclassName">UIViewController</string>
|
||||
<dictionary class="NSMutableDictionary" key="actions">
|
||||
<string key="showMasterPopover:">id</string>
|
||||
<string key="toggleMasterBeforeDetail:">id</string>
|
||||
<string key="toggleMasterView:">id</string>
|
||||
<string key="toggleSplitOrientation:">id</string>
|
||||
</dictionary>
|
||||
<dictionary class="NSMutableDictionary" key="actionInfosByName">
|
||||
<object class="IBActionInfo" key="showMasterPopover:">
|
||||
<string key="name">showMasterPopover:</string>
|
||||
<string key="candidateClassName">id</string>
|
||||
</object>
|
||||
<object class="IBActionInfo" key="toggleMasterBeforeDetail:">
|
||||
<string key="name">toggleMasterBeforeDetail:</string>
|
||||
<string key="candidateClassName">id</string>
|
||||
</object>
|
||||
<object class="IBActionInfo" key="toggleMasterView:">
|
||||
<string key="name">toggleMasterView:</string>
|
||||
<string key="candidateClassName">id</string>
|
||||
</object>
|
||||
<object class="IBActionInfo" key="toggleSplitOrientation:">
|
||||
<string key="name">toggleSplitOrientation:</string>
|
||||
<string key="candidateClassName">id</string>
|
||||
</object>
|
||||
</dictionary>
|
||||
<dictionary class="NSMutableDictionary" key="outlets">
|
||||
<string key="delegate">id</string>
|
||||
<string key="detailViewController">UIViewController</string>
|
||||
<string key="masterViewController">UIViewController</string>
|
||||
</dictionary>
|
||||
<dictionary class="NSMutableDictionary" key="toOneOutletInfosByName">
|
||||
<object class="IBToOneOutletInfo" key="delegate">
|
||||
<string key="name">delegate</string>
|
||||
<string key="candidateClassName">id</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="detailViewController">
|
||||
<string key="name">detailViewController</string>
|
||||
<string key="candidateClassName">UIViewController</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="masterViewController">
|
||||
<string key="name">masterViewController</string>
|
||||
<string key="candidateClassName">UIViewController</string>
|
||||
</object>
|
||||
</dictionary>
|
||||
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
||||
<string key="majorKey">IBProjectSource</string>
|
||||
<string key="minorKey">./Classes/MGSplitViewController.h</string>
|
||||
</object>
|
||||
</object>
|
||||
<object class="IBPartialClassDescription">
|
||||
<string key="className">MoveSiteViewController</string>
|
||||
<string key="superclassName">UIViewController</string>
|
||||
|
@ -1189,6 +1237,25 @@
|
|||
<string key="minorKey">./Classes/MoveSiteViewController.h</string>
|
||||
</object>
|
||||
</object>
|
||||
<object class="IBPartialClassDescription">
|
||||
<string key="className">NBContainerViewController</string>
|
||||
<string key="superclassName">UIViewController</string>
|
||||
<object class="NSMutableDictionary" key="outlets">
|
||||
<string key="NS.key.0">appDelegate</string>
|
||||
<string key="NS.object.0">NewsBlurAppDelegate</string>
|
||||
</object>
|
||||
<object class="NSMutableDictionary" key="toOneOutletInfosByName">
|
||||
<string key="NS.key.0">appDelegate</string>
|
||||
<object class="IBToOneOutletInfo" key="NS.object.0">
|
||||
<string key="name">appDelegate</string>
|
||||
<string key="candidateClassName">NewsBlurAppDelegate</string>
|
||||
</object>
|
||||
</object>
|
||||
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
||||
<string key="majorKey">IBProjectSource</string>
|
||||
<string key="minorKey">./Classes/NBContainerViewController.h</string>
|
||||
</object>
|
||||
</object>
|
||||
<object class="IBPartialClassDescription">
|
||||
<string key="className">NewsBlurAppDelegate</string>
|
||||
<string key="superclassName">BaseViewController</string>
|
||||
|
@ -1199,18 +1266,21 @@
|
|||
<string key="feedDetailViewController">FeedDetailViewController</string>
|
||||
<string key="feedsMenuViewController">FeedsMenuViewController</string>
|
||||
<string key="feedsViewController">NewsBlurViewController</string>
|
||||
<string key="findFriendsNavigationController">UINavigationController</string>
|
||||
<string key="findSitesViewController">FindSitesViewController</string>
|
||||
<string key="firstTimeUserAddFriendsViewController">FirstTimeUserAddFriendsViewController</string>
|
||||
<string key="firstTimeUserAddNewsBlurViewController">FirstTimeUserAddNewsBlurViewController</string>
|
||||
<string key="firstTimeUserAddSitesViewController">FirstTimeUserAddSitesViewController</string>
|
||||
<string key="firstTimeUserViewController">FirstTimeUserViewController</string>
|
||||
<string key="fontSettingsViewController">FontSettingsViewController</string>
|
||||
<string key="friendsListViewController">FriendsListViewController</string>
|
||||
<string key="ftuxNavigationController">UINavigationController</string>
|
||||
<string key="googleReaderViewController">GoogleReaderViewController</string>
|
||||
<string key="loginViewController">LoginViewController</string>
|
||||
<string key="masterContainerViewController">NBContainerViewController</string>
|
||||
<string key="moveSiteViewController">MoveSiteViewController</string>
|
||||
<string key="navigationController">UINavigationController</string>
|
||||
<string key="originalStoryViewController">OriginalStoryViewController</string>
|
||||
<string key="shareViewController">ShareViewController</string>
|
||||
<string key="splitStoryController">MGSplitViewController</string>
|
||||
<string key="splitStoryDetailNavigationController">UINavigationController</string>
|
||||
<string key="storyDetailViewController">StoryDetailViewController</string>
|
||||
<string key="userProfileViewController">UserProfileViewController</string>
|
||||
<string key="window">UIWindow</string>
|
||||
|
@ -1240,9 +1310,21 @@
|
|||
<string key="name">feedsViewController</string>
|
||||
<string key="candidateClassName">NewsBlurViewController</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="findFriendsNavigationController">
|
||||
<string key="name">findFriendsNavigationController</string>
|
||||
<string key="candidateClassName">UINavigationController</string>
|
||||
<object class="IBToOneOutletInfo" key="findSitesViewController">
|
||||
<string key="name">findSitesViewController</string>
|
||||
<string key="candidateClassName">FindSitesViewController</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="firstTimeUserAddFriendsViewController">
|
||||
<string key="name">firstTimeUserAddFriendsViewController</string>
|
||||
<string key="candidateClassName">FirstTimeUserAddFriendsViewController</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="firstTimeUserAddNewsBlurViewController">
|
||||
<string key="name">firstTimeUserAddNewsBlurViewController</string>
|
||||
<string key="candidateClassName">FirstTimeUserAddNewsBlurViewController</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="firstTimeUserAddSitesViewController">
|
||||
<string key="name">firstTimeUserAddSitesViewController</string>
|
||||
<string key="candidateClassName">FirstTimeUserAddSitesViewController</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="firstTimeUserViewController">
|
||||
<string key="name">firstTimeUserViewController</string>
|
||||
|
@ -1256,6 +1338,10 @@
|
|||
<string key="name">friendsListViewController</string>
|
||||
<string key="candidateClassName">FriendsListViewController</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="ftuxNavigationController">
|
||||
<string key="name">ftuxNavigationController</string>
|
||||
<string key="candidateClassName">UINavigationController</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="googleReaderViewController">
|
||||
<string key="name">googleReaderViewController</string>
|
||||
<string key="candidateClassName">GoogleReaderViewController</string>
|
||||
|
@ -1264,6 +1350,10 @@
|
|||
<string key="name">loginViewController</string>
|
||||
<string key="candidateClassName">LoginViewController</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="masterContainerViewController">
|
||||
<string key="name">masterContainerViewController</string>
|
||||
<string key="candidateClassName">NBContainerViewController</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="moveSiteViewController">
|
||||
<string key="name">moveSiteViewController</string>
|
||||
<string key="candidateClassName">MoveSiteViewController</string>
|
||||
|
@ -1280,14 +1370,6 @@
|
|||
<string key="name">shareViewController</string>
|
||||
<string key="candidateClassName">ShareViewController</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="splitStoryController">
|
||||
<string key="name">splitStoryController</string>
|
||||
<string key="candidateClassName">MGSplitViewController</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="splitStoryDetailNavigationController">
|
||||
<string key="name">splitStoryDetailNavigationController</string>
|
||||
<string key="candidateClassName">UINavigationController</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="storyDetailViewController">
|
||||
<string key="name">storyDetailViewController</string>
|
||||
<string key="candidateClassName">StoryDetailViewController</string>
|
||||
|
@ -1314,7 +1396,7 @@
|
|||
<string key="sectionUntapped:">UIButton</string>
|
||||
<string key="sectionUntappedOutside:">UIButton</string>
|
||||
<string key="selectIntelligence">id</string>
|
||||
<string key="showMenuButton:">id</string>
|
||||
<string key="tapAddSite:">id</string>
|
||||
</dictionary>
|
||||
<dictionary class="NSMutableDictionary" key="actionInfosByName">
|
||||
<object class="IBActionInfo" key="sectionTapped:">
|
||||
|
@ -1333,8 +1415,8 @@
|
|||
<string key="name">selectIntelligence</string>
|
||||
<string key="candidateClassName">id</string>
|
||||
</object>
|
||||
<object class="IBActionInfo" key="showMenuButton:">
|
||||
<string key="name">showMenuButton:</string>
|
||||
<object class="IBActionInfo" key="tapAddSite:">
|
||||
<string key="name">tapAddSite:</string>
|
||||
<string key="candidateClassName">id</string>
|
||||
</object>
|
||||
</dictionary>
|
||||
|
@ -1536,6 +1618,8 @@
|
|||
<string key="doNextStory">id</string>
|
||||
<string key="doNextUnreadStory">id</string>
|
||||
<string key="doPreviousStory">id</string>
|
||||
<string key="showOriginalSubview:">id</string>
|
||||
<string key="tapProgressBar:">id</string>
|
||||
<string key="toggleFontSize:">id</string>
|
||||
</dictionary>
|
||||
<dictionary class="NSMutableDictionary" key="actionInfosByName">
|
||||
|
@ -1551,6 +1635,14 @@
|
|||
<string key="name">doPreviousStory</string>
|
||||
<string key="candidateClassName">id</string>
|
||||
</object>
|
||||
<object class="IBActionInfo" key="showOriginalSubview:">
|
||||
<string key="name">showOriginalSubview:</string>
|
||||
<string key="candidateClassName">id</string>
|
||||
</object>
|
||||
<object class="IBActionInfo" key="tapProgressBar:">
|
||||
<string key="name">tapProgressBar:</string>
|
||||
<string key="candidateClassName">id</string>
|
||||
</object>
|
||||
<object class="IBActionInfo" key="toggleFontSize:">
|
||||
<string key="name">toggleFontSize:</string>
|
||||
<string key="candidateClassName">id</string>
|
||||
|
@ -1559,14 +1651,18 @@
|
|||
<dictionary class="NSMutableDictionary" key="outlets">
|
||||
<string key="activity">UIBarButtonItem</string>
|
||||
<string key="appDelegate">NewsBlurAppDelegate</string>
|
||||
<string key="bottomPlaceholderToolbar">UIToolbar</string>
|
||||
<string key="buttonAction">UIBarButtonItem</string>
|
||||
<string key="buttonNext">UIBarButtonItem</string>
|
||||
<string key="buttonNextStory">UIBarButtonItem</string>
|
||||
<string key="buttonPrevious">UIBarButtonItem</string>
|
||||
<string key="feedTitleGradient">UIView</string>
|
||||
<string key="fontSettingsButton">UIBarButtonItem</string>
|
||||
<string key="innerView">UIView</string>
|
||||
<string key="noStorySelectedLabel">UILabel</string>
|
||||
<string key="originalStoryButton">UIBarButtonItem</string>
|
||||
<string key="progressView">UIProgressView</string>
|
||||
<string key="toggleViewButton">UIBarButtonItem</string>
|
||||
<string key="progressViewContainer">UIView</string>
|
||||
<string key="toolbar">UIToolbar</string>
|
||||
<string key="webView">UIWebView</string>
|
||||
</dictionary>
|
||||
|
@ -1579,6 +1675,10 @@
|
|||
<string key="name">appDelegate</string>
|
||||
<string key="candidateClassName">NewsBlurAppDelegate</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="bottomPlaceholderToolbar">
|
||||
<string key="name">bottomPlaceholderToolbar</string>
|
||||
<string key="candidateClassName">UIToolbar</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="buttonAction">
|
||||
<string key="name">buttonAction</string>
|
||||
<string key="candidateClassName">UIBarButtonItem</string>
|
||||
|
@ -1599,17 +1699,29 @@
|
|||
<string key="name">feedTitleGradient</string>
|
||||
<string key="candidateClassName">UIView</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="fontSettingsButton">
|
||||
<string key="name">fontSettingsButton</string>
|
||||
<string key="candidateClassName">UIBarButtonItem</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="innerView">
|
||||
<string key="name">innerView</string>
|
||||
<string key="candidateClassName">UIView</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="noStorySelectedLabel">
|
||||
<string key="name">noStorySelectedLabel</string>
|
||||
<string key="candidateClassName">UILabel</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="originalStoryButton">
|
||||
<string key="name">originalStoryButton</string>
|
||||
<string key="candidateClassName">UIBarButtonItem</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="progressView">
|
||||
<string key="name">progressView</string>
|
||||
<string key="candidateClassName">UIProgressView</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="toggleViewButton">
|
||||
<string key="name">toggleViewButton</string>
|
||||
<string key="candidateClassName">UIBarButtonItem</string>
|
||||
<object class="IBToOneOutletInfo" key="progressViewContainer">
|
||||
<string key="name">progressViewContainer</string>
|
||||
<string key="candidateClassName">UIView</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="toolbar">
|
||||
<string key="name">toolbar</string>
|
||||
|
|
|
@ -48,7 +48,7 @@
|
|||
<string key="NSFrameSize">{320, 416}</string>
|
||||
<reference key="NSSuperview" ref="191373211"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="155973878"/>
|
||||
<reference key="NSNextKeyView" ref="824754638"/>
|
||||
<object class="NSColor" key="IBUIBackgroundColor">
|
||||
<int key="NSColorSpace">10</int>
|
||||
<object class="NSImage" key="NSImage">
|
||||
|
@ -4461,7 +4461,6 @@ AAgAAAAIAAIACAACAAAAAgAAAAEAAQABAAE</bytes>
|
|||
<string key="NSFrame">{{132, 17}, {56, 11}}</string>
|
||||
<reference key="NSSuperview" ref="155973878"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView"/>
|
||||
<bool key="IBUIOpaque">NO</bool>
|
||||
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
||||
<float key="IBUIProgress">0.5</float>
|
||||
|
@ -4531,6 +4530,17 @@ AAgAAAAIAAIACAACAAAAAgAAAAEAAQABAAE</bytes>
|
|||
<bytes key="NSRGB">MC4yMjcwMjkxMjggMC4zNjIxMzU3NzY0IDAuNDU2NTIxNzM5MQA</bytes>
|
||||
</object>
|
||||
</object>
|
||||
<object class="IBUIView" id="824754638">
|
||||
<reference key="NSNextResponder" ref="191373211"/>
|
||||
<int key="NSvFlags">269</int>
|
||||
<string key="NSFrame">{{131, 416}, {70, 43}}</string>
|
||||
<reference key="NSSuperview" ref="191373211"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="155973878"/>
|
||||
<string key="NSReuseIdentifierKey">_NS:9</string>
|
||||
<bool key="IBUIOpaque">NO</bool>
|
||||
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
||||
</object>
|
||||
</object>
|
||||
<string key="NSFrame">{{0, 20}, {320, 460}}</string>
|
||||
<reference key="NSSuperview"/>
|
||||
|
@ -4606,6 +4616,14 @@ AAgAAAAIAAIACAACAAAAAgAAAAEAAQABAAE</bytes>
|
|||
</object>
|
||||
<int key="connectionID">75</int>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBCocoaTouchOutletConnection" key="connection">
|
||||
<string key="label">progressViewContainer</string>
|
||||
<reference key="source" ref="372490531"/>
|
||||
<reference key="destination" ref="824754638"/>
|
||||
</object>
|
||||
<int key="connectionID">80</int>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBCocoaTouchOutletConnection" key="connection">
|
||||
<string key="label">delegate</string>
|
||||
|
@ -4657,6 +4675,7 @@ AAgAAAAIAAIACAACAAAAAgAAAAEAAQABAAE</bytes>
|
|||
<bool key="EncodedWithXMLCoder">YES</bool>
|
||||
<reference ref="506862915"/>
|
||||
<reference ref="155973878"/>
|
||||
<reference ref="824754638"/>
|
||||
</object>
|
||||
<reference key="parent" ref="0"/>
|
||||
</object>
|
||||
|
@ -4735,6 +4754,11 @@ AAgAAAAIAAIACAACAAAAAgAAAAEAAQABAAE</bytes>
|
|||
<reference key="object" ref="936960182"/>
|
||||
<reference key="parent" ref="155973878"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">78</int>
|
||||
<reference key="object" ref="824754638"/>
|
||||
<reference key="parent" ref="191373211"/>
|
||||
</object>
|
||||
</object>
|
||||
</object>
|
||||
<object class="NSMutableDictionary" key="flattenedProperties">
|
||||
|
@ -4756,6 +4780,7 @@ AAgAAAAIAAIACAACAAAAAgAAAAEAAQABAAE</bytes>
|
|||
<string>63.IBPluginDependency</string>
|
||||
<string>73.IBPluginDependency</string>
|
||||
<string>77.IBPluginDependency</string>
|
||||
<string>78.IBPluginDependency</string>
|
||||
</object>
|
||||
<object class="NSArray" key="dict.values">
|
||||
<bool key="EncodedWithXMLCoder">YES</bool>
|
||||
|
@ -4774,6 +4799,7 @@ AAgAAAAIAAIACAACAAAAAgAAAAEAAQABAAE</bytes>
|
|||
<string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
</object>
|
||||
</object>
|
||||
<object class="NSMutableDictionary" key="unlocalizedProperties">
|
||||
|
@ -4788,7 +4814,7 @@ AAgAAAAIAAIACAACAAAAAgAAAAEAAQABAAE</bytes>
|
|||
<reference key="dict.values" ref="0"/>
|
||||
</object>
|
||||
<nil key="sourceID"/>
|
||||
<int key="maxID">77</int>
|
||||
<int key="maxID">80</int>
|
||||
</object>
|
||||
<object class="IBClassDescriber" key="IBDocument.Classes">
|
||||
<object class="NSMutableArray" key="referencedPartialClassDescriptions">
|
||||
|
@ -5224,30 +5250,17 @@ AAgAAAAIAAIACAACAAAAAgAAAAEAAQABAAE</bytes>
|
|||
<object class="IBPartialClassDescription">
|
||||
<string key="className">FeedsMenuViewController</string>
|
||||
<string key="superclassName">UIViewController</string>
|
||||
<object class="NSMutableDictionary" key="actions">
|
||||
<string key="NS.key.0">tapCancelButton:</string>
|
||||
<string key="NS.object.0">UIBarButtonItem</string>
|
||||
</object>
|
||||
<object class="NSMutableDictionary" key="actionInfosByName">
|
||||
<string key="NS.key.0">tapCancelButton:</string>
|
||||
<object class="IBActionInfo" key="NS.object.0">
|
||||
<string key="name">tapCancelButton:</string>
|
||||
<string key="candidateClassName">UIBarButtonItem</string>
|
||||
</object>
|
||||
</object>
|
||||
<object class="NSMutableDictionary" key="outlets">
|
||||
<bool key="EncodedWithXMLCoder">YES</bool>
|
||||
<object class="NSArray" key="dict.sortedKeys">
|
||||
<bool key="EncodedWithXMLCoder">YES</bool>
|
||||
<string>appDelegate</string>
|
||||
<string>menuTableView</string>
|
||||
<string>toolbar</string>
|
||||
</object>
|
||||
<object class="NSArray" key="dict.values">
|
||||
<bool key="EncodedWithXMLCoder">YES</bool>
|
||||
<string>NewsBlurAppDelegate</string>
|
||||
<string>UITableView</string>
|
||||
<string>UIToolbar</string>
|
||||
</object>
|
||||
</object>
|
||||
<object class="NSMutableDictionary" key="toOneOutletInfosByName">
|
||||
|
@ -5256,7 +5269,6 @@ AAgAAAAIAAIACAACAAAAAgAAAAEAAQABAAE</bytes>
|
|||
<bool key="EncodedWithXMLCoder">YES</bool>
|
||||
<string>appDelegate</string>
|
||||
<string>menuTableView</string>
|
||||
<string>toolbar</string>
|
||||
</object>
|
||||
<object class="NSArray" key="dict.values">
|
||||
<bool key="EncodedWithXMLCoder">YES</bool>
|
||||
|
@ -5268,10 +5280,6 @@ AAgAAAAIAAIACAACAAAAAgAAAAEAAQABAAE</bytes>
|
|||
<string key="name">menuTableView</string>
|
||||
<string key="candidateClassName">UITableView</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo">
|
||||
<string key="name">toolbar</string>
|
||||
<string key="candidateClassName">UIToolbar</string>
|
||||
</object>
|
||||
</object>
|
||||
</object>
|
||||
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
||||
|
@ -5279,6 +5287,53 @@ AAgAAAAIAAIACAACAAAAAgAAAAEAAQABAAE</bytes>
|
|||
<string key="minorKey">./Classes/FeedsMenuViewController.h</string>
|
||||
</object>
|
||||
</object>
|
||||
<object class="IBPartialClassDescription">
|
||||
<string key="className">FindSitesViewController</string>
|
||||
<string key="superclassName">UIViewController</string>
|
||||
<object class="NSMutableDictionary" key="outlets">
|
||||
<bool key="EncodedWithXMLCoder">YES</bool>
|
||||
<object class="NSArray" key="dict.sortedKeys">
|
||||
<bool key="EncodedWithXMLCoder">YES</bool>
|
||||
<string>appDelegate</string>
|
||||
<string>sitesSearchBar</string>
|
||||
<string>sitesTable</string>
|
||||
</object>
|
||||
<object class="NSArray" key="dict.values">
|
||||
<bool key="EncodedWithXMLCoder">YES</bool>
|
||||
<string>NewsBlurAppDelegate</string>
|
||||
<string>UISearchBar</string>
|
||||
<string>UITableView</string>
|
||||
</object>
|
||||
</object>
|
||||
<object class="NSMutableDictionary" key="toOneOutletInfosByName">
|
||||
<bool key="EncodedWithXMLCoder">YES</bool>
|
||||
<object class="NSArray" key="dict.sortedKeys">
|
||||
<bool key="EncodedWithXMLCoder">YES</bool>
|
||||
<string>appDelegate</string>
|
||||
<string>sitesSearchBar</string>
|
||||
<string>sitesTable</string>
|
||||
</object>
|
||||
<object class="NSArray" key="dict.values">
|
||||
<bool key="EncodedWithXMLCoder">YES</bool>
|
||||
<object class="IBToOneOutletInfo">
|
||||
<string key="name">appDelegate</string>
|
||||
<string key="candidateClassName">NewsBlurAppDelegate</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo">
|
||||
<string key="name">sitesSearchBar</string>
|
||||
<string key="candidateClassName">UISearchBar</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo">
|
||||
<string key="name">sitesTable</string>
|
||||
<string key="candidateClassName">UITableView</string>
|
||||
</object>
|
||||
</object>
|
||||
</object>
|
||||
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
||||
<string key="majorKey">IBProjectSource</string>
|
||||
<string key="minorKey">./Classes/FindSitesViewController.h</string>
|
||||
</object>
|
||||
</object>
|
||||
<object class="IBPartialClassDescription">
|
||||
<string key="className">FirstTimeUserAddFriendsViewController</string>
|
||||
<string key="superclassName">UIViewController</string>
|
||||
|
@ -5885,16 +5940,14 @@ AAgAAAAIAAIACAACAAAAAgAAAAEAAQABAAE</bytes>
|
|||
<object class="NSArray" key="dict.sortedKeys">
|
||||
<bool key="EncodedWithXMLCoder">YES</bool>
|
||||
<string>appDelegate</string>
|
||||
<string>friendSearchBar</string>
|
||||
<string>friendsTable</string>
|
||||
<string>searchBar</string>
|
||||
<string>searchDisplayController</string>
|
||||
</object>
|
||||
<object class="NSArray" key="dict.values">
|
||||
<bool key="EncodedWithXMLCoder">YES</bool>
|
||||
<string>NewsBlurAppDelegate</string>
|
||||
<string>UITableView</string>
|
||||
<string>UISearchBar</string>
|
||||
<string>UISearchDisplayController</string>
|
||||
<string>UITableView</string>
|
||||
</object>
|
||||
</object>
|
||||
<object class="NSMutableDictionary" key="toOneOutletInfosByName">
|
||||
|
@ -5902,9 +5955,8 @@ AAgAAAAIAAIACAACAAAAAgAAAAEAAQABAAE</bytes>
|
|||
<object class="NSArray" key="dict.sortedKeys">
|
||||
<bool key="EncodedWithXMLCoder">YES</bool>
|
||||
<string>appDelegate</string>
|
||||
<string>friendSearchBar</string>
|
||||
<string>friendsTable</string>
|
||||
<string>searchBar</string>
|
||||
<string>searchDisplayController</string>
|
||||
</object>
|
||||
<object class="NSArray" key="dict.values">
|
||||
<bool key="EncodedWithXMLCoder">YES</bool>
|
||||
|
@ -5913,16 +5965,12 @@ AAgAAAAIAAIACAACAAAAAgAAAAEAAQABAAE</bytes>
|
|||
<string key="candidateClassName">NewsBlurAppDelegate</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo">
|
||||
<string key="name">friendsTable</string>
|
||||
<string key="candidateClassName">UITableView</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo">
|
||||
<string key="name">searchBar</string>
|
||||
<string key="name">friendSearchBar</string>
|
||||
<string key="candidateClassName">UISearchBar</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo">
|
||||
<string key="name">searchDisplayController</string>
|
||||
<string key="candidateClassName">UISearchDisplayController</string>
|
||||
<string key="name">friendsTable</string>
|
||||
<string key="candidateClassName">UITableView</string>
|
||||
</object>
|
||||
</object>
|
||||
</object>
|
||||
|
@ -6369,6 +6417,7 @@ AAgAAAAIAAIACAACAAAAAgAAAAEAAQABAAE</bytes>
|
|||
<string>feedDetailViewController</string>
|
||||
<string>feedsMenuViewController</string>
|
||||
<string>feedsViewController</string>
|
||||
<string>findSitesViewController</string>
|
||||
<string>firstTimeUserAddFriendsViewController</string>
|
||||
<string>firstTimeUserAddNewsBlurViewController</string>
|
||||
<string>firstTimeUserAddSitesViewController</string>
|
||||
|
@ -6395,6 +6444,7 @@ AAgAAAAIAAIACAACAAAAAgAAAAEAAQABAAE</bytes>
|
|||
<string>FeedDetailViewController</string>
|
||||
<string>FeedsMenuViewController</string>
|
||||
<string>NewsBlurViewController</string>
|
||||
<string>FindSitesViewController</string>
|
||||
<string>FirstTimeUserAddFriendsViewController</string>
|
||||
<string>FirstTimeUserAddNewsBlurViewController</string>
|
||||
<string>FirstTimeUserAddSitesViewController</string>
|
||||
|
@ -6424,6 +6474,7 @@ AAgAAAAIAAIACAACAAAAAgAAAAEAAQABAAE</bytes>
|
|||
<string>feedDetailViewController</string>
|
||||
<string>feedsMenuViewController</string>
|
||||
<string>feedsViewController</string>
|
||||
<string>findSitesViewController</string>
|
||||
<string>firstTimeUserAddFriendsViewController</string>
|
||||
<string>firstTimeUserAddNewsBlurViewController</string>
|
||||
<string>firstTimeUserAddSitesViewController</string>
|
||||
|
@ -6468,6 +6519,10 @@ AAgAAAAIAAIACAACAAAAAgAAAAEAAQABAAE</bytes>
|
|||
<string key="name">feedsViewController</string>
|
||||
<string key="candidateClassName">NewsBlurViewController</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo">
|
||||
<string key="name">findSitesViewController</string>
|
||||
<string key="candidateClassName">FindSitesViewController</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo">
|
||||
<string key="name">firstTimeUserAddFriendsViewController</string>
|
||||
<string key="candidateClassName">FirstTimeUserAddFriendsViewController</string>
|
||||
|
@ -6554,7 +6609,7 @@ AAgAAAAIAAIACAACAAAAAgAAAAEAAQABAAE</bytes>
|
|||
<string>sectionUntapped:</string>
|
||||
<string>sectionUntappedOutside:</string>
|
||||
<string>selectIntelligence</string>
|
||||
<string>showMenuButton:</string>
|
||||
<string>tapAddSite:</string>
|
||||
</object>
|
||||
<object class="NSArray" key="dict.values">
|
||||
<bool key="EncodedWithXMLCoder">YES</bool>
|
||||
|
@ -6573,7 +6628,7 @@ AAgAAAAIAAIACAACAAAAAgAAAAEAAQABAAE</bytes>
|
|||
<string>sectionUntapped:</string>
|
||||
<string>sectionUntappedOutside:</string>
|
||||
<string>selectIntelligence</string>
|
||||
<string>showMenuButton:</string>
|
||||
<string>tapAddSite:</string>
|
||||
</object>
|
||||
<object class="NSArray" key="dict.values">
|
||||
<bool key="EncodedWithXMLCoder">YES</bool>
|
||||
|
@ -6594,7 +6649,7 @@ AAgAAAAIAAIACAACAAAAAgAAAAEAAQABAAE</bytes>
|
|||
<string key="candidateClassName">id</string>
|
||||
</object>
|
||||
<object class="IBActionInfo">
|
||||
<string key="name">showMenuButton:</string>
|
||||
<string key="name">tapAddSite:</string>
|
||||
<string key="candidateClassName">id</string>
|
||||
</object>
|
||||
</object>
|
||||
|
@ -6997,6 +7052,7 @@ AAgAAAAIAAIACAACAAAAAgAAAAEAAQABAAE</bytes>
|
|||
<string>feedTitleGradient</string>
|
||||
<string>fontSettingsButton</string>
|
||||
<string>innerView</string>
|
||||
<string>noStorySelectedLabel</string>
|
||||
<string>originalStoryButton</string>
|
||||
<string>progressView</string>
|
||||
<string>progressViewContainer</string>
|
||||
|
@ -7015,6 +7071,7 @@ AAgAAAAIAAIACAACAAAAAgAAAAEAAQABAAE</bytes>
|
|||
<string>UIView</string>
|
||||
<string>UIBarButtonItem</string>
|
||||
<string>UIView</string>
|
||||
<string>UILabel</string>
|
||||
<string>UIBarButtonItem</string>
|
||||
<string>UIProgressView</string>
|
||||
<string>UIView</string>
|
||||
|
@ -7036,6 +7093,7 @@ AAgAAAAIAAIACAACAAAAAgAAAAEAAQABAAE</bytes>
|
|||
<string>feedTitleGradient</string>
|
||||
<string>fontSettingsButton</string>
|
||||
<string>innerView</string>
|
||||
<string>noStorySelectedLabel</string>
|
||||
<string>originalStoryButton</string>
|
||||
<string>progressView</string>
|
||||
<string>progressViewContainer</string>
|
||||
|
@ -7084,6 +7142,10 @@ AAgAAAAIAAIACAACAAAAAgAAAAEAAQABAAE</bytes>
|
|||
<string key="name">innerView</string>
|
||||
<string key="candidateClassName">UIView</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo">
|
||||
<string key="name">noStorySelectedLabel</string>
|
||||
<string key="candidateClassName">UILabel</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo">
|
||||
<string key="name">originalStoryButton</string>
|
||||
<string key="candidateClassName">UIBarButtonItem</string>
|
||||
|
|
|
@ -365,14 +365,15 @@ a.NB-show-profile {
|
|||
}
|
||||
|
||||
.NB-iphone .NB-button {
|
||||
float: left;
|
||||
padding: 9px 10px 6px 0px;
|
||||
float: right;
|
||||
padding: 4px 0px 10px 4px;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.NB-button.NB-share-button {
|
||||
float: left;
|
||||
padding: 0px 20px 20px 0px;
|
||||
margin: 0;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.NB-button div {
|
||||
|
|
Loading…
Add table
Reference in a new issue