diff --git a/clients/ios/Classes/AddSiteTableCell.m b/clients/ios/Classes/AddSiteTableCell.m
index e3e71ec09..d0b7b2dd5 100644
--- a/clients/ios/Classes/AddSiteTableCell.m
+++ b/clients/ios/Classes/AddSiteTableCell.m
@@ -64,7 +64,6 @@ static UIFont *indicatorFont = nil;
if (highlighted) {
textColor = UIColorFromRGB(0x686868); //0x686868
}
- [textColor set];
NSMutableParagraphStyle *paragraphStyle = [[NSMutableParagraphStyle defaultParagraphStyle] mutableCopy];
paragraphStyle.lineBreakMode = NSLineBreakByTruncatingTail;
@@ -73,6 +72,7 @@ static UIFont *indicatorFont = nil;
[self.siteTitle
drawInRect:CGRectMake(leftMargin, 6, rect.size.width - rightMargin, 21)
withAttributes:@{NSFontAttributeName: font,
+ NSForegroundColorAttributeName: textColor,
NSParagraphStyleAttributeName: paragraphStyle}];
textColor = UIColorFromRGB(0x333333);
@@ -92,12 +92,12 @@ static UIFont *indicatorFont = nil;
if (highlighted) {
textColor = UIColorFromRGB(0x686868);
}
- [textColor set];
paragraphStyle.alignment = NSTextAlignmentRight;
[self.siteSubscribers
drawInRect:CGRectMake(leftMargin + (rect.size.width - rightMargin) / 2 - 10, 42 + adjustForSocial, (rect.size.width - rightMargin) / 2 + 10, 15.0)
withAttributes:@{NSFontAttributeName: font,
+ NSForegroundColorAttributeName: textColor,
NSParagraphStyleAttributeName: paragraphStyle}];
// feed bar
diff --git a/clients/ios/Classes/DashboardViewController.h b/clients/ios/Classes/DashboardViewController.h
index 3e408768a..dcd511b49 100644
--- a/clients/ios/Classes/DashboardViewController.h
+++ b/clients/ios/Classes/DashboardViewController.h
@@ -19,7 +19,7 @@
ActivityModule *activitiesModule;
UIWebView *feedbackWebView;
UIToolbar *toolbar;
- UIToolbar *topToolbar;
+ UINavigationBar *topToolbar;
UISegmentedControl *segmentedButton;
}
@@ -28,7 +28,7 @@
@property (nonatomic) IBOutlet ActivityModule *activitiesModule;
@property (nonatomic) IBOutlet UIWebView *feedbackWebView;
-@property (nonatomic) IBOutlet UIToolbar *topToolbar;
+@property (nonatomic) IBOutlet UINavigationBar *topToolbar;
@property (nonatomic) IBOutlet UIToolbar *toolbar;
@property (nonatomic) IBOutlet UISegmentedControl *segmentedButton;
diff --git a/clients/ios/Classes/DashboardViewController.m b/clients/ios/Classes/DashboardViewController.m
index 065b7893c..e802e1d39 100644
--- a/clients/ios/Classes/DashboardViewController.m
+++ b/clients/ios/Classes/DashboardViewController.m
@@ -42,8 +42,6 @@
self.feedbackWebView.delegate = self;
self.segmentedButton.selectedSegmentIndex = 0;
- self.topToolbar.tintColor = [UIColor colorWithRed:0.16f green:0.36f blue:0.46 alpha:0.9];
-
// preload feedback
self.feedbackWebView.scalesPageToFit = YES;
@@ -59,7 +57,10 @@
NSURLRequest *requestObj = [NSURLRequest requestWithURL:url];
//Load the request in the UIWebView.
[self.feedbackWebView loadRequest:requestObj];
-
+
+ CGRect topToolbarFrame = self.topToolbar.frame;
+ topToolbarFrame.size.height += 20;
+ self.topToolbar.frame = topToolbarFrame;
}
- (void)viewDidUnload {
diff --git a/clients/ios/Classes/FolderTitleView.m b/clients/ios/Classes/FolderTitleView.m
index 4750377c5..9ef4b5341 100644
--- a/clients/ios/Classes/FolderTitleView.m
+++ b/clients/ios/Classes/FolderTitleView.m
@@ -98,7 +98,6 @@
// Folder title
UIColor *textColor = [UIColor colorWithRed:0.3 green:0.3 blue:0.3 alpha:1.0];
- [textColor set];
UIFont *font = [UIFont boldSystemFontOfSize:11];
NSString *folderTitle;
if (section == 0) {
@@ -121,6 +120,7 @@
[folderTitle
drawInRect:CGRectMake(36.0, 10, rect.size.width - 36 - 36 - countWidth, 14)
withAttributes:@{NSFontAttributeName: font,
+ NSForegroundColorAttributeName: textColor,
NSParagraphStyleAttributeName: paragraphStyle}];
UIButton *invisibleHeaderButton = [UIButton buttonWithType:UIButtonTypeCustom];
diff --git a/clients/ios/Classes/NBContainerViewController.m b/clients/ios/Classes/NBContainerViewController.m
index 07117824e..1bd717795 100644
--- a/clients/ios/Classes/NBContainerViewController.m
+++ b/clients/ios/Classes/NBContainerViewController.m
@@ -99,6 +99,8 @@
object:nil];
self.view.backgroundColor = UIColorFromRGB(0xC2C5BE);
+ self.navigationController.navigationBar.translucent = NO;
+ self.masterNavigationController.navigationBar.translucent = NO;
self.masterNavigationController = appDelegate.navigationController;
self.feedsViewController = appDelegate.feedsViewController;
@@ -120,9 +122,11 @@
UINavigationController *nav = [[UINavigationController alloc] initWithRootViewController:self.storyPageControl];
self.storyNavigationController = nav;
+ self.storyNavigationController.navigationBar.translucent = NO;
UINavigationController *shareNav = [[UINavigationController alloc] initWithRootViewController:self.shareViewController];
self.shareNavigationController = shareNav;
+ self.shareNavigationController.navigationBar.translucent = NO;
// set default y coordinate for feedDetailY from saved preferences
NSUserDefaults *userPreferences = [NSUserDefaults standardUserDefaults];
diff --git a/clients/ios/Classes/NewsBlurAppDelegate.m b/clients/ios/Classes/NewsBlurAppDelegate.m
index 620170506..1c14459fe 100644
--- a/clients/ios/Classes/NewsBlurAppDelegate.m
+++ b/clients/ios/Classes/NewsBlurAppDelegate.m
@@ -1026,13 +1026,15 @@
- (void)showOriginalStory:(NSURL *)url {
self.activeOriginalStoryURL = url;
+ UINavigationController *navController = [[UINavigationController alloc]
+ initWithRootViewController:self.originalStoryViewController];
+ navController.navigationBar.translucent = NO;
+ self.originalStoryViewNavController = navController;
+
if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) {
- [self.masterContainerViewController presentViewController:originalStoryViewController
+ [self.masterContainerViewController presentViewController:self.originalStoryViewNavController
animated:YES completion:nil];
} else {
- self.originalStoryViewNavController = [[UINavigationController alloc]
- initWithRootViewController:originalStoryViewController];
- self.originalStoryViewNavController.navigationBar.translucent = NO;
[self.navigationController presentViewController:self.originalStoryViewNavController
animated:YES completion:nil];
}
diff --git a/clients/ios/Classes/OriginalStoryViewController.h b/clients/ios/Classes/OriginalStoryViewController.h
index 48beba714..d4dfcbb01 100644
--- a/clients/ios/Classes/OriginalStoryViewController.h
+++ b/clients/ios/Classes/OriginalStoryViewController.h
@@ -11,7 +11,7 @@
@class NewsBlurAppDelegate;
-static const CGFloat kNavBarHeight = 58.0f;
+static const CGFloat kNavBarHeight = 78.0f;
static const CGFloat kLabelHeight = 18.0f;
static const CGFloat kMargin = 6.0f;
static const CGFloat kSpacer = 2.0f;
@@ -37,7 +37,7 @@ static const CGFloat kButtonWidth = 68.0f;
}
@property (nonatomic) IBOutlet NewsBlurAppDelegate *appDelegate;
-@property (nonatomic) IBOutlet UIView *navBar;
+@property (nonatomic) IBOutlet UINavigationBar *navBar;
@property (nonatomic) IBOutlet UIBarButtonItem *closeButton;
@property (nonatomic) IBOutlet UIWebView *webView;
@property (nonatomic) IBOutlet UIBarButtonItem* back;
diff --git a/clients/ios/Classes/OriginalStoryViewController.m b/clients/ios/Classes/OriginalStoryViewController.m
index 8fc95255b..d828ed02d 100644
--- a/clients/ios/Classes/OriginalStoryViewController.m
+++ b/clients/ios/Classes/OriginalStoryViewController.m
@@ -72,14 +72,8 @@
[self layoutForInterfaceOrientation:toInterfaceOrientation];
}
-- (void)viewDidLoad {
- CGRect navBarFrame = self.view.bounds;
- navBarFrame.size.height = kNavBarHeight;
- navBarFrame.origin.y += 20;
- navBar = [[UINavigationBar alloc] initWithFrame:navBarFrame];
- [self.view addSubview:navBar];
-
- CGRect labelFrame = CGRectMake(kMargin, kSpacer,
+- (void)viewDidLoad {
+ CGRect labelFrame = CGRectMake(kMargin, kSpacer + 20,
navBar.bounds.size.width - 2*kMargin,
kLabelHeight);
@@ -102,7 +96,7 @@
action:@selector(doCloseOriginalStoryViewController)];
close.width = kButtonWidth;
CGRect closeButtonFrame = CGRectMake(-20,
- kSpacer*2.0 + kLabelHeight - 7.0f,
+ kSpacer*2.0 + kLabelHeight - 7.0f + 20,
kButtonWidth + kMargin,
44.0);
TransparentToolbar* tools = [[TransparentToolbar alloc]
@@ -114,7 +108,7 @@
CGRect addressFrame = CGRectMake(closeButtonFrame.origin.x +
closeButtonFrame.size.width +
kMargin,
- kSpacer*2.0 + kLabelHeight,
+ kSpacer*2.0 + kLabelHeight + 20,
labelFrame.size.width
- kButtonWidth - kMargin*2 + 20,
kAddressHeight);
@@ -167,6 +161,8 @@
navBarFrame.size.height = kNavBarHeight;
navBar.autoresizingMask = UIViewAutoresizingFlexibleWidth;
navBar.frame = navBarFrame;
+ navBar.translucent = NO;
+ toolbar.translucent = NO;
}
- (IBAction)webViewGoBack:(id)sender {
diff --git a/clients/ios/Classes/SiteCell.m b/clients/ios/Classes/SiteCell.m
index 6a65dbefa..023053c4c 100644
--- a/clients/ios/Classes/SiteCell.m
+++ b/clients/ios/Classes/SiteCell.m
@@ -58,13 +58,13 @@ static UIFont *indicatorFont = nil;
font = [UIFont fontWithName:@"Helvetica-Bold" size:11];
textColor = UIColorFromRGB(0x606060);
- [textColor set];
NSMutableParagraphStyle *paragraphStyle = [[NSMutableParagraphStyle defaultParagraphStyle] mutableCopy];
paragraphStyle.lineBreakMode = NSLineBreakByTruncatingTail;
paragraphStyle.alignment = NSTextAlignmentLeft;
[self.siteTitle drawInRect:CGRectMake(leftMargin + 20, 6, rect.size.width - 20, 21)
withAttributes:@{NSFontAttributeName: font,
+ NSForegroundColorAttributeName: textColor,
NSParagraphStyleAttributeName: paragraphStyle}];
// feed bar
diff --git a/clients/ios/Resources-iPad/Classes/DashboardViewController~ipad.xib b/clients/ios/Resources-iPad/Classes/DashboardViewController~ipad.xib
index e6dbdc280..5ad176560 100644
--- a/clients/ios/Resources-iPad/Classes/DashboardViewController~ipad.xib
+++ b/clients/ios/Resources-iPad/Classes/DashboardViewController~ipad.xib
@@ -8,11 +8,10 @@
-
-
+
@@ -21,35 +20,27 @@
-
-
-
-
-
-
-
-
+
-
+
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
@@ -76,4 +67,7 @@
+
+
+
\ No newline at end of file
diff --git a/clients/ios/Resources-iPad/Classes/MoveSiteViewController~ipad.xib b/clients/ios/Resources-iPad/Classes/MoveSiteViewController~ipad.xib
index cb105a0ff..50bc56907 100644
--- a/clients/ios/Resources-iPad/Classes/MoveSiteViewController~ipad.xib
+++ b/clients/ios/Resources-iPad/Classes/MoveSiteViewController~ipad.xib
@@ -1,6692 +1,135 @@
-
-
-
- 1552
- 12F37
- 3084
- 1187.39
- 626.00
-
-
- IBProxyObject
- IBUIActivityIndicatorView
- IBUIBarButtonItem
- IBUIImageView
- IBUILabel
- IBUINavigationBar
- IBUINavigationItem
- IBUIPickerView
- IBUITextField
- IBUIView
-
-
- com.apple.InterfaceBuilder.IBCocoaTouchPlugin
-
-
-
-
-
-
-
-
-
-
-
- activityIndicator
-
-
-
- 21
-
-
-
- cancelButton
-
-
-
- 23
-
-
-
- errorLabel
-
-
-
- 24
-
-
-
- folderPicker
-
-
-
- 25
-
-
-
- moveButton
-
-
-
- 26
-
-
-
- movingLabel
-
-
-
- 27
-
-
-
- navBar
-
-
-
- 28
-
-
-
- toFolderInput
-
-
-
- 29
-
-
-
- view
-
-
-
- 35
-
-
-
- titleLabel
-
-
-
- 32
-
-
-
- fromFolderInput
-
-
-
- 46
-
-
-
- dataSource
-
-
-
- 37
-
-
-
- delegate
-
-
-
- 38
-
-
-
- delegate
-
-
-
- 36
-
-
-
- doMoveButton
-
-
-
- 33
-
-
-
- doCancelButton
-
-
-
- 34
-
-
-
- delegate
-
-
-
- 45
-
-
-
-
-
- 0
-
-
-
-
-
- -1
-
-
- File's Owner
-
-
- -2
-
-
-
-
- 4
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 8
-
-
-
-
- 9
-
-
-
-
- 13
-
-
-
-
- 14
-
-
-
-
-
-
-
- 15
-
-
-
-
- 16
-
-
-
-
- 17
-
-
-
-
-
-
-
-
- 18
-
-
-
-
- 19
-
-
-
-
- 12
-
-
- Image View - Background.png
-
-
- 31
-
-
-
-
-
- 41
-
-
-
-
- 42
-
-
-
-
- 43
-
-
-
-
- 44
-
-
-
-
-
-
- MoveSiteViewController
- com.apple.InterfaceBuilder.IBCocoaTouchPlugin
- UIResponder
- com.apple.InterfaceBuilder.IBCocoaTouchPlugin
- com.apple.InterfaceBuilder.IBCocoaTouchPlugin
- com.apple.InterfaceBuilder.IBCocoaTouchPlugin
- com.apple.InterfaceBuilder.IBCocoaTouchPlugin
- com.apple.InterfaceBuilder.IBCocoaTouchPlugin
- com.apple.InterfaceBuilder.IBCocoaTouchPlugin
- com.apple.InterfaceBuilder.IBCocoaTouchPlugin
- com.apple.InterfaceBuilder.IBCocoaTouchPlugin
- com.apple.InterfaceBuilder.IBCocoaTouchPlugin
- com.apple.InterfaceBuilder.IBCocoaTouchPlugin
-
- IBCocoaTouchFramework
-
-
- com.apple.InterfaceBuilder.IBCocoaTouchPlugin
- com.apple.InterfaceBuilder.IBCocoaTouchPlugin
- com.apple.InterfaceBuilder.IBCocoaTouchPlugin
- com.apple.InterfaceBuilder.IBCocoaTouchPlugin
- FolderTextField
- com.apple.InterfaceBuilder.IBCocoaTouchPlugin
- com.apple.InterfaceBuilder.IBCocoaTouchPlugin
- com.apple.InterfaceBuilder.IBCocoaTouchPlugin
-
-
-
-
-
- 47
-
-
-
-
- ActivityModule
- UIView
-
- IBProjectSource
- ./Classes/ActivityModule.h
-
-
-
- AddSiteViewController
- UIViewController
-
- id
- id
- id
- id
- id
-
-
-
- addSite
- id
-
-
- checkSiteAddress
- id
-
-
- doAddButton
- id
-
-
- doCancelButton
- id
-
-
- toggleAddFolder:
- id
-
-
-
- UIActivityIndicatorView
- UIBarButtonItem
- UIButton
- UITextField
- UILabel
- NewsBlurAppDelegate
- UIBarButtonItem
- UILabel
- UIPickerView
- UITextField
- UINavigationBar
- UIActivityIndicatorView
- UITextField
- UIScrollView
- UITableView
-
-
-
- activityIndicator
- UIActivityIndicatorView
-
-
- addButton
- UIBarButtonItem
-
-
- addFolderButton
- UIButton
-
-
- addFolderInput
- UITextField
-
-
- addingLabel
- UILabel
-
-
- appDelegate
- NewsBlurAppDelegate
-
-
- cancelButton
- UIBarButtonItem
-
-
- errorLabel
- UILabel
-
-
- folderPicker
- UIPickerView
-
-
- inFolderInput
- UITextField
-
-
- navBar
- UINavigationBar
-
-
- siteActivityIndicator
- UIActivityIndicatorView
-
-
- siteAddressInput
- UITextField
-
-
- siteScrollView
- UIScrollView
-
-
- siteTable
- UITableView
-
-
-
- IBProjectSource
- ./Classes/AddSiteViewController.h
-
-
-
- BaseViewController
- UIViewController
-
- IBProjectSource
- ./Classes/BaseViewController.h
-
-
-
- DashboardViewController
- UIViewController
-
- id
- id
-
-
-
- doLogout:
- id
-
-
- tapSegmentedButton:
- id
-
-
-
- ActivityModule
- NewsBlurAppDelegate
- UIWebView
- InteractionsModule
- UISegmentedControl
- UIToolbar
- UIToolbar
-
-
-
- activitiesModule
- ActivityModule
-
-
- appDelegate
- NewsBlurAppDelegate
-
-
- feedbackWebView
- UIWebView
-
-
- interactionsModule
- InteractionsModule
-
-
- segmentedButton
- UISegmentedControl
-
-
- toolbar
- UIToolbar
-
-
- topToolbar
- UIToolbar
-
-
-
- IBProjectSource
- ./Classes/DashboardViewController.h
-
-
-
- FeedDetailMenuViewController
- UIViewController
-
- id
- id
-
-
-
- changeOrder:
- id
-
-
- changeReadFilter:
- id
-
-
-
- NewsBlurAppDelegate
- UITableView
- UISegmentedControl
- UISegmentedControl
-
-
-
- appDelegate
- NewsBlurAppDelegate
-
-
- menuTableView
- UITableView
-
-
- orderSegmentedControl
- UISegmentedControl
-
-
- readFilterSegmentedControl
- UISegmentedControl
-
-
-
- IBProjectSource
- ./Classes/FeedDetailMenuViewController.h
-
-
-
- FeedDetailViewController
- BaseViewController
-
- id
- id
-
-
-
- doOpenMarkReadActionSheet:
- id
-
-
- doOpenSettingsActionSheet:
- id
-
-
-
- NewsBlurAppDelegate
- UIBarButtonItem
- TransparentToolbar
- UIBarButtonItem
- UIBarButtonItem
- UIBarButtonItem
- UIBarButtonItem
- UIBarButtonItem
- UITableView
- UIBarButtonItem
-
-
-
- appDelegate
- NewsBlurAppDelegate
-
-
- feedMarkReadButton
- UIBarButtonItem
-
-
- rightToolbar
- TransparentToolbar
-
-
- separatorBarButton
- UIBarButtonItem
-
-
- settingsBarButton
- UIBarButtonItem
-
-
- spacer2BarButton
- UIBarButtonItem
-
-
- spacer3BarButton
- UIBarButtonItem
-
-
- spacerBarButton
- UIBarButtonItem
-
-
- storyTitlesTable
- UITableView
-
-
- titleImageBarButton
- UIBarButtonItem
-
-
-
- IBProjectSource
- ./Classes/FeedDetailViewController.h
-
-
-
- FeedsMenuViewController
- UIViewController
-
- NewsBlurAppDelegate
- UIAlertView
- UITableView
-
-
-
- appDelegate
- NewsBlurAppDelegate
-
-
- loginAsAlert
- UIAlertView
-
-
- menuTableView
- UITableView
-
-
-
- IBProjectSource
- ./Classes/FeedsMenuViewController.h
-
-
-
- FirstTimeUserAddFriendsViewController
- UIViewController
-
- id
- id
- id
- id
-
-
-
- tapFacebookButton
- id
-
-
- tapNextButton
- id
-
-
- tapTwitterButton
- id
-
-
- toggleAutoFollowFriends:
- id
-
-
-
- NewsBlurAppDelegate
- UIActivityIndicatorView
- UIButton
- UILabel
- UIBarButtonItem
- UIActivityIndicatorView
- UIButton
-
-
-
- appDelegate
- NewsBlurAppDelegate
-
-
- facebookActivityIndicator
- UIActivityIndicatorView
-
-
- facebookButton
- UIButton
-
-
- friendsLabel
- UILabel
-
-
- nextButton
- UIBarButtonItem
-
-
- twitterActivityIndicator
- UIActivityIndicatorView
-
-
- twitterButton
- UIButton
-
-
-
- IBProjectSource
- ./Classes/FirstTimeUserAddFriendsViewController.h
-
-
-
- FirstTimeUserAddNewsBlurViewController
- UIViewController
-
- id
- id
- id
-
-
-
- tapNewsBlurButton:
- id
-
-
- tapNextButton
- id
-
-
- tapPopularButton:
- id
-
-
-
- NewsBlurAppDelegate
- UILabel
- UIBarButtonItem
-
-
-
- appDelegate
- NewsBlurAppDelegate
-
-
- instructionsLabel
- UILabel
-
-
- nextButton
- UIBarButtonItem
-
-
-
- IBProjectSource
- ./Classes/FirstTimeUserAddNewsBlurViewController.h
-
-
-
- FirstTimeUserAddSitesViewController
- UIViewController
-
- tapNextButton
- id
-
-
- tapNextButton
-
- tapNextButton
- id
-
-
-
- UIActivityIndicatorView
- NewsBlurAppDelegate
- UITableView
- UIButton
- UIView
- UILabel
- UIBarButtonItem
- UIScrollView
-
-
-
- activityIndicator
- UIActivityIndicatorView
-
-
- appDelegate
- NewsBlurAppDelegate
-
-
- categoriesTable
- UITableView
-
-
- googleReaderButton
- UIButton
-
-
- googleReaderButtonWrapper
- UIView
-
-
- instructionLabel
- UILabel
-
-
- nextButton
- UIBarButtonItem
-
-
- scrollView
- UIScrollView
-
-
-
- IBProjectSource
- ./Classes/FirstTimeUserAddSitesViewController.h
-
-
-
- FirstTimeUserViewController
- UIViewController
-
- tapNextButton
- id
-
-
- tapNextButton
-
- tapNextButton
- id
-
-
-
- NewsBlurAppDelegate
- UILabel
- UILabel
- UIImageView
- UIBarButtonItem
-
-
-
- appDelegate
- NewsBlurAppDelegate
-
-
- footer
- UILabel
-
-
- header
- UILabel
-
-
- logo
- UIImageView
-
-
- nextButton
- UIBarButtonItem
-
-
-
- IBProjectSource
- ./Classes/FirstTimeUserViewController.h
-
-
-
- FolderTextField
- UITextField
-
- IBProjectSource
- ./Classes/FolderTextField.h
-
-
-
- FontSettingsViewController
- UIViewController
-
- id
- id
-
-
-
- changeFontSize:
- id
-
-
- changeFontStyle:
- id
-
-
-
- NewsBlurAppDelegate
- UISegmentedControl
- UISegmentedControl
- UILabel
- UITableView
- UILabel
-
-
-
- appDelegate
- NewsBlurAppDelegate
-
-
- fontSizeSegment
- UISegmentedControl
-
-
- fontStyleSegment
- UISegmentedControl
-
-
- largeFontSizeLabel
- UILabel
-
-
- menuTableView
- UITableView
-
-
- smallFontSizeLabel
- UILabel
-
-
-
- IBProjectSource
- ./Classes/FontSettingsViewController.h
-
-
-
- FriendsListViewController
- UIViewController
-
- NewsBlurAppDelegate
- UISearchBar
- UITableView
-
-
-
- appDelegate
- NewsBlurAppDelegate
-
-
- friendSearchBar
- UISearchBar
-
-
- friendsTable
- UITableView
-
-
-
- IBProjectSource
- ./Classes/FriendsListViewController.h
-
-
-
- IASKAppSettingsViewController
- UITableViewController
-
- delegate
- id
-
-
- delegate
-
- delegate
- id
-
-
-
- IBProjectSource
- ./Classes/IASKAppSettingsViewController.h
-
-
-
- InteractionsModule
- UIView
-
- IBProjectSource
- ./Classes/InteractionsModule.h
-
-
-
- LoginViewController
- UIViewController
-
- id
- id
- id
- id
- id
-
-
-
- selectLogin
- id
-
-
- selectLoginSignup
- id
-
-
- selectSignUp
- id
-
-
- tapLoginButton
- id
-
-
- tapSignUpButton
- id
-
-
-
- NewsBlurAppDelegate
- UITextField
- UILabel
- UILabel
- UIView
- UISegmentedControl
- UITextField
- UILabel
- UILabel
- UIButton
- UIButton
- UITextField
- UITextField
- UIView
- UITextField
- UILabel
- UILabel
-
-
-
- appDelegate
- NewsBlurAppDelegate
-
-
- emailInput
- UITextField
-
-
- emailLabel
- UILabel
-
-
- errorLabel
- UILabel
-
-
- logInView
- UIView
-
-
- loginControl
- UISegmentedControl
-
-
- passwordInput
- UITextField
-
-
- passwordLabel
- UILabel
-
-
- passwordOptionalLabel
- UILabel
-
-
- selectLoginButton
- UIButton
-
-
- selectSignUpButton
- UIButton
-
-
- signUpPasswordInput
- UITextField
-
-
- signUpUsernameInput
- UITextField
-
-
- signUpView
- UIView
-
-
- usernameInput
- UITextField
-
-
- usernameLabel
- UILabel
-
-
- usernameOrEmailLabel
- UILabel
-
-
-
- IBProjectSource
- ./Classes/LoginViewController.h
-
-
-
- MoveSiteViewController
- UIViewController
-
- id
- id
- id
- id
-
-
-
- doCancelButton
- id
-
-
- doMoveButton
- id
-
-
- moveFolder
- id
-
-
- moveSite
- id
-
-
-
- UIActivityIndicatorView
- NewsBlurAppDelegate
- UIBarButtonItem
- UILabel
- UIPickerView
- FolderTextField
- UIBarButtonItem
- UILabel
- UINavigationBar
- UILabel
- FolderTextField
-
-
-
- activityIndicator
- UIActivityIndicatorView
-
-
- appDelegate
- NewsBlurAppDelegate
-
-
- cancelButton
- UIBarButtonItem
-
-
- errorLabel
- UILabel
-
-
- folderPicker
- UIPickerView
-
-
- fromFolderInput
- FolderTextField
-
-
- moveButton
- UIBarButtonItem
-
-
- movingLabel
- UILabel
-
-
- navBar
- UINavigationBar
-
-
- titleLabel
- UILabel
-
-
- toFolderInput
- FolderTextField
-
-
-
- IBProjectSource
- ./Classes/MoveSiteViewController.h
-
-
-
- NBContainerViewController
- UIViewController
-
- appDelegate
- NewsBlurAppDelegate
-
-
- appDelegate
-
- appDelegate
- NewsBlurAppDelegate
-
-
-
- IBProjectSource
- ./Classes/NBContainerViewController.h
-
-
-
- NSLayoutConstraint
- NSObject
-
- IBProjectSource
- ./Classes/NSLayoutConstraint.h
-
-
-
- NewsBlurAppDelegate
- BaseViewController
-
- AddSiteViewController
- DashboardViewController
- FeedDashboardViewController
- FeedDetailMenuViewController
- FeedDetailViewController
- FeedsMenuViewController
- NewsBlurViewController
- FirstTimeUserAddFriendsViewController
- FirstTimeUserAddNewsBlurViewController
- FirstTimeUserAddSitesViewController
- FirstTimeUserViewController
- FontSettingsViewController
- FriendsListViewController
- UINavigationController
- LoginViewController
- NBContainerViewController
- MoveSiteViewController
- UINavigationController
- OriginalStoryViewController
- IASKAppSettingsViewController
- ShareViewController
- StoryDetailViewController
- StoryPageControl
- TrainerViewController
- UserProfileViewController
- UIWindow
-
-
-
- addSiteViewController
- AddSiteViewController
-
-
- dashboardViewController
- DashboardViewController
-
-
- feedDashboardViewController
- FeedDashboardViewController
-
-
- feedDetailMenuViewController
- FeedDetailMenuViewController
-
-
- feedDetailViewController
- FeedDetailViewController
-
-
- feedsMenuViewController
- FeedsMenuViewController
-
-
- feedsViewController
- NewsBlurViewController
-
-
- firstTimeUserAddFriendsViewController
- FirstTimeUserAddFriendsViewController
-
-
- firstTimeUserAddNewsBlurViewController
- FirstTimeUserAddNewsBlurViewController
-
-
- firstTimeUserAddSitesViewController
- FirstTimeUserAddSitesViewController
-
-
- firstTimeUserViewController
- FirstTimeUserViewController
-
-
- fontSettingsViewController
- FontSettingsViewController
-
-
- friendsListViewController
- FriendsListViewController
-
-
- ftuxNavigationController
- UINavigationController
-
-
- loginViewController
- LoginViewController
-
-
- masterContainerViewController
- NBContainerViewController
-
-
- moveSiteViewController
- MoveSiteViewController
-
-
- navigationController
- UINavigationController
-
-
- originalStoryViewController
- OriginalStoryViewController
-
-
- preferencesViewController
- IASKAppSettingsViewController
-
-
- shareViewController
- ShareViewController
-
-
- storyDetailViewController
- StoryDetailViewController
-
-
- storyPageControl
- StoryPageControl
-
-
- trainerViewController
- TrainerViewController
-
-
- userProfileViewController
- UserProfileViewController
-
-
- window
- UIWindow
-
-
-
- IBProjectSource
- ./Classes/NewsBlurAppDelegate.h
-
-
-
- NewsBlurViewController
- BaseViewController
-
- UIButton
- UIButton
- UIButton
- id
- id
- id
- id
-
-
-
- sectionTapped:
- UIButton
-
-
- sectionUntapped:
- UIButton
-
-
- sectionUntappedOutside:
- UIButton
-
-
- selectIntelligence
- id
-
-
- showInteractionsPopover:
- id
-
-
- showSettingsPopover:
- id
-
-
- tapAddSite:
- id
-
-
-
- UIBarButtonItem
- UIBarButtonItem
- NewsBlurAppDelegate
- UISlider
- UITableView
- UIToolbar
- UIBarButtonItem
- UIView
- UISegmentedControl
- UIView
- UIBarButtonItem
- UIBarButtonItem
-
-
-
- activitiesButton
- UIBarButtonItem
-
-
- addBarButton
- UIBarButtonItem
-
-
- appDelegate
- NewsBlurAppDelegate
-
-
- feedScoreSlider
- UISlider
-
-
- feedTitlesTable
- UITableView
-
-
- feedViewToolbar
- UIToolbar
-
-
- homeButton
- UIBarButtonItem
-
-
- innerView
- UIView
-
-
- intelligenceControl
- UISegmentedControl
-
-
- noFocusMessage
- UIView
-
-
- settingsBarButton
- UIBarButtonItem
-
-
- toolbarLeftMargin
- UIBarButtonItem
-
-
-
- IBProjectSource
- ./Classes/NewsBlurViewController.h
-
-
-
- OriginalStoryViewController
- BaseViewController
-
- id
- id
- id
- id
- id
- id
-
-
-
- doCloseOriginalStoryViewController
- id
-
-
- doOpenActionSheet:
- id
-
-
- loadAddress:
- id
-
-
- webViewGoBack:
- id
-
-
- webViewGoForward:
- id
-
-
- webViewRefresh:
- id
-
-
-
- NewsBlurAppDelegate
- UIBarButtonItem
- UIBarButtonItem
- UIBarButtonItem
- UIBarButtonItem
- UILabel
- UITextField
- UIBarButtonItem
- UIToolbar
- UIWebView
-
-
-
- appDelegate
- NewsBlurAppDelegate
-
-
- back
- UIBarButtonItem
-
-
- closeButton
- UIBarButtonItem
-
-
- forward
- UIBarButtonItem
-
-
- pageAction
- UIBarButtonItem
-
-
- pageTitle
- UILabel
-
-
- pageUrl
- UITextField
-
-
- refresh
- UIBarButtonItem
-
-
- toolbar
- UIToolbar
-
-
- webView
- UIWebView
-
-
-
- IBProjectSource
- ./Classes/OriginalStoryViewController.h
-
-
-
- ShareViewController
- BaseViewController
-
- id
- id
- id
- id
-
-
-
- doCancelButton:
- id
-
-
- doReplyToComment:
- id
-
-
- doShareThisStory:
- id
-
-
- doToggleButton:
- id
-
-
-
- NewsBlurAppDelegate
- UIButton
- UITextView
- UIButton
- NSLayoutConstraint
- UILabel
- UIBarButtonItem
- UIButton
-
-
-
- appDelegate
- NewsBlurAppDelegate
-
-
- appdotnetButton
- UIButton
-
-
- commentField
- UITextView
-
-
- facebookButton
- UIButton
-
-
- keyboardHeight
- NSLayoutConstraint
-
-
- storyTitle
- UILabel
-
-
- submitButton
- UIBarButtonItem
-
-
- twitterButton
- UIButton
-
-
-
- IBProjectSource
- ./Classes/ShareViewController.h
-
-
-
- StoryDetailViewController
- BaseViewController
-
- NewsBlurAppDelegate
- UIView
- UIView
- UILabel
- UIWebView
-
-
-
- appDelegate
- NewsBlurAppDelegate
-
-
- feedTitleGradient
- UIView
-
-
- innerView
- UIView
-
-
- noStorySelectedLabel
- UILabel
-
-
- webView
- UIWebView
-
-
-
- IBProjectSource
- ./Classes/StoryDetailViewController.h
-
-
-
- StoryPageControl
- BaseViewController
-
- id
- id
- id
- id
- id
- id
- id
-
-
-
- doNextUnreadStory
- id
-
-
- doPreviousStory
- id
-
-
- openSendToDialog:
- id
-
-
- showOriginalSubview:
- id
-
-
- tapProgressBar:
- id
-
-
- toggleFontSize:
- id
-
-
- toggleView:
- id
-
-
-
- NewsBlurAppDelegate
- UIToolbar
- UIBarButtonItem
- UIButton
- UIButton
- UIButton
- UIButton
- THCircularProgressView
- UIBarButtonItem
- UIActivityIndicatorView
- UIBarButtonItem
- UIPageControl
- UIView
- UIView
- TransparentToolbar
- UIScrollView
- UIBarButtonItem
- UIBarButtonItem
- UIBarButtonItem
- UIBarButtonItem
- UIBarButtonItem
- UIView
-
-
-
- appDelegate
- NewsBlurAppDelegate
-
-
- bottomPlaceholderToolbar
- UIToolbar
-
-
- buttonAction
- UIBarButtonItem
-
-
- buttonNext
- UIButton
-
-
- buttonPrevious
- UIButton
-
-
- buttonSend
- UIButton
-
-
- buttonText
- UIButton
-
-
- circularProgressView
- THCircularProgressView
-
-
- fontSettingsButton
- UIBarButtonItem
-
-
- loadingIndicator
- UIActivityIndicatorView
-
-
- originalStoryButton
- UIBarButtonItem
-
-
- pageControl
- UIPageControl
-
-
- progressView
- UIView
-
-
- progressViewContainer
- UIView
-
-
- rightToolbar
- TransparentToolbar
-
-
- scrollView
- UIScrollView
-
-
- separatorBarButton
- UIBarButtonItem
-
-
- spacer2BarButton
- UIBarButtonItem
-
-
- spacer3BarButton
- UIBarButtonItem
-
-
- spacerBarButton
- UIBarButtonItem
-
-
- subscribeButton
- UIBarButtonItem
-
-
- traverseView
- UIView
-
-
-
- IBProjectSource
- ./Classes/StoryPageControl.h
-
-
-
- THCircularProgressView
- UIView
-
- IBProjectSource
- ./Classes/THCircularProgressView.h
-
-
-
- TrainerViewController
- BaseViewController
-
- doCloseDialog:
- id
-
-
- doCloseDialog:
-
- doCloseDialog:
- id
-
-
-
- NewsBlurAppDelegate
- UIBarButtonItem
- UINavigationBar
- TrainerWebView
-
-
-
- appDelegate
- NewsBlurAppDelegate
-
-
- closeButton
- UIBarButtonItem
-
-
- navBar
- UINavigationBar
-
-
- webView
- TrainerWebView
-
-
-
- IBProjectSource
- ./Classes/TrainerViewController.h
-
-
-
- TrainerWebView
- UIWebView
-
- IBProjectSource
- ./Classes/TrainerWebView.h
-
-
-
- TransparentToolbar
- UIToolbar
-
- IBProjectSource
- ./Classes/TransparentToolbar.h
-
-
-
- UserProfileViewController
- UIViewController
-
- IBProjectSource
- ./Classes/UserProfileViewController.h
-
-
-
-
- 0
- IBIPadFramework
-
- com.apple.InterfaceBuilder.CocoaTouchPlugin.iPhoneOS
-
-
- YES
- 3
-
- Background.png
- {320, 480}
-
- 2083
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/clients/ios/Resources-iPhone/AddSiteViewController.xib b/clients/ios/Resources-iPhone/AddSiteViewController.xib
index a2bbf5406..60049c4bb 100644
--- a/clients/ios/Resources-iPhone/AddSiteViewController.xib
+++ b/clients/ios/Resources-iPhone/AddSiteViewController.xib
@@ -1,3323 +1,162 @@
-
-
-
- 1552
- 12C3006
- 3084
- 1187.34
- 625.00
-
- com.apple.InterfaceBuilder.IBCocoaTouchPlugin
- 2083
-
-
- YES
- IBProxyObject
- IBUIActivityIndicatorView
- IBUIBarButtonItem
- IBUIButton
- IBUILabel
- IBUINavigationBar
- IBUINavigationItem
- IBUIPickerView
- IBUIScrollView
- IBUITableView
- IBUITextField
- IBUIView
-
-
- YES
- com.apple.InterfaceBuilder.IBCocoaTouchPlugin
-
-
- PluginDependencyRecalculationVersion
-
-
-
- YES
-
- IBFilesOwner
- IBCocoaTouchFramework
-
-
- IBFirstResponder
- IBCocoaTouchFramework
-
-
-
- 292
-
- YES
-
-
- -2147483356
- {{111, 294}, {189, 52}}
-
-
-
- _NS:311
- NO
- YES
- 4
- NO
- IBCocoaTouchFramework
- Adding...
-
- 3
- MC4zMzMzMzMzMzMzAA
-
-
-
- 3
- MQA
-
- 2
-
-
- {0, 1}
- 1
- 10
-
- Helvetica
- Helvetica
- 0
- 17
-
-
- Helvetica
- 17
- 16
-
-
-
-
- -2147483358
- {{20, 265}, {280, 110}}
-
-
-
- _NS:311
- NO
- YES
- 4
- NO
- IBCocoaTouchFramework
- Error
-
- 1
- MC45MjQwODM3MDk3IDAuMzU5MTI4Mjk2NCAwLjIzMjY3MTI3NTcAA
-
-
-
- 3
- MQA
-
-
- {0, 1}
- 1
- 17
- 4
- 1
-
-
- 280
-
-
-
- -2147483356
- {{87, 310}, {20, 20}}
-
-
-
- _NS:824
- NO
- IBCocoaTouchFramework
- 2
-
-
-
- 290
- {320, 44}
-
-
-
- _NS:240
- IBCocoaTouchFramework
-
- YES
-
-
-
-
- Cancel
- IBCocoaTouchFramework
- 50
- 1
-
-
-
- Add Site
- IBCocoaTouchFramework
- 2
-
-
- IBCocoaTouchFramework
-
-
-
-
-
- 290
- {{0, 500}, {320, 216}}
-
-
-
- _NS:624
- IBCocoaTouchFramework
- YES
-
-
-
- 290
- {{20, 96}, {250, 31}}
-
-
-
- _NS:294
- NO
- YES
-
-
-
- IBCocoaTouchFramework
- 0
-
- 3
- Choose a folder
-
- YES
- 17
-
- IBCocoaTouchFramework
-
-
- Helvetica-Bold
- Helvetica
- 2
- 12
-
-
- Helvetica-Bold
- 12
- 16
-
-
-
-
- 290
- {{20, 57}, {280, 31}}
-
-
-
- _NS:294
- NO
- YES
- IBCocoaTouchFramework
- 0
-
- 3
- Search by site title or address...
-
- YES
- 18
-
- 1
- 7
- 6
- YES
- IBCocoaTouchFramework
-
- 1
-
- Helvetica
- Helvetica
- 0
- 12
-
-
- Helvetica
- 12
- 16
-
-
-
-
- 290
- {{20, 135}, {280, 31}}
-
-
-
- _NS:294
- NO
- YES
- 0.0
- IBCocoaTouchFramework
- 0
-
- 3
- New folder title
-
- YES
- 18
-
- 1
- 1
- 1
- 9
- YES
- IBCocoaTouchFramework
-
- 1
-
-
-
-
-
- -2147483356
- {{24, 63}, {20, 20}}
-
-
-
- _NS:824
-
- 3
- MQA
-
- YES
- IBCocoaTouchFramework
- 2
-
-
-
- 274
-
- YES
-
-
- 274
- {320, 110}
-
-
-
- _NS:392
-
- 1
- MSAxIDEgMC42AA
- lightTextColor
-
- YES
- IBCocoaTouchFramework
- YES
- NO
- 1
- 0
- YES
- 44
- 22
- 22
-
-
- {{0, 135}, {320, 110}}
-
-
-
- _NS:174
-
- 3
- MCAwAA
-
- YES
- 0.0
- YES
- IBCocoaTouchFramework
-
-
-
- 289
- {{270, 96}, {50, 32}}
-
-
-
- _NS:9
- NO
- 4
- IBCocoaTouchFramework
- 0
- 0
- 8
- 8
- 8
- 26
-
-
- 3
- MC41AA
-
-
- NSImage
- g_icn_folder_add.png
-
-
- 2
- 15
-
-
- Helvetica-Bold
- 15
- 16
-
-
-
- {{0, 20}, {320, 460}}
-
-
-
-
- 2
- MC45MDk4MDM5ODY1IDAuOTE3NjQ3MTIzMyAwLjg5NDExNzcxMwA
-
- YES
-
- IBCocoaTouchFramework
-
-
-
-
- YES
-
-
- siteTable
-
-
-
- 54
-
-
-
- siteScrollView
-
-
-
- 64
-
-
-
- siteAddressInput
-
-
-
- 57
-
-
-
- siteActivityIndicator
-
-
-
- 62
-
-
-
- navBar
-
-
-
- 46
-
-
-
- inFolderInput
-
-
-
- 39
-
-
-
- folderPicker
-
-
-
- 38
-
-
-
- errorLabel
-
-
-
- 51
-
-
-
- cancelButton
-
-
-
- 42
-
-
-
- addingLabel
-
-
-
- 50
-
-
-
- addButton
-
-
-
- 41
-
-
-
- addFolderInput
-
-
-
- 66
-
-
-
- activityIndicator
-
-
-
- 22
-
-
-
- view
-
-
-
- 32
-
-
-
- addFolderButton
-
-
-
- 69
-
-
-
- delegate
-
-
-
- 45
-
-
-
- doCancelButton
-
-
-
- 35
-
-
-
- doAddButton
-
-
-
- 40
-
-
-
- dataSource
-
-
-
- 33
-
-
-
- delegate
-
-
-
- 34
-
-
-
- delegate
-
-
-
- 37
-
-
-
- delegate
-
-
-
- 58
-
-
-
- checkSiteAddress
-
-
- 18
-
- 60
-
-
-
- checkSiteAddress
-
-
- 17
-
- 70
-
-
-
- delegate
-
-
-
- 55
-
-
-
- dataSource
-
-
-
- 52
-
-
-
- delegate
-
-
-
- 53
-
-
-
- toggleAddFolder:
-
-
- 7
-
- 68
-
-
-
-
- YES
-
- 0
-
- YES
-
-
-
-
-
- -1
-
-
- File's Owner
-
-
- -2
-
-
-
-
- 5
-
-
- YES
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 9
-
-
-
-
- 10
-
-
-
-
- 24
-
-
- YES
-
-
-
-
-
- 25
-
-
- YES
-
-
-
-
-
-
- 26
-
-
-
-
- 27
-
-
-
-
- 30
-
-
-
-
- 36
-
-
-
-
- 47
-
-
-
-
- 48
-
-
-
-
- 8
-
-
-
-
- 61
-
-
-
-
- 63
-
-
- YES
-
-
-
-
-
- 49
-
-
-
-
- 67
-
-
-
-
-
-
- YES
-
- YES
- -1.CustomClassName
- -1.IBPluginDependency
- -2.CustomClassName
- -2.IBPluginDependency
- 10.IBPluginDependency
- 24.IBPluginDependency
- 25.IBPluginDependency
- 26.IBPluginDependency
- 27.IBPluginDependency
- 30.IBPluginDependency
- 36.IBPluginDependency
- 47.IBPluginDependency
- 48.IBPluginDependency
- 49.IBPluginDependency
- 5.IBPluginDependency
- 61.IBPluginDependency
- 63.IBPluginDependency
- 67.IBPluginDependency
- 67.IBUIButtonInspectorSelectedEdgeInsetMetadataKey
- 8.IBPluginDependency
- 9.IBPluginDependency
-
-
- YES
- AddSiteViewController
- com.apple.InterfaceBuilder.IBCocoaTouchPlugin
- UIResponder
- com.apple.InterfaceBuilder.IBCocoaTouchPlugin
- com.apple.InterfaceBuilder.IBCocoaTouchPlugin
- com.apple.InterfaceBuilder.IBCocoaTouchPlugin
- com.apple.InterfaceBuilder.IBCocoaTouchPlugin
- com.apple.InterfaceBuilder.IBCocoaTouchPlugin
- com.apple.InterfaceBuilder.IBCocoaTouchPlugin
- com.apple.InterfaceBuilder.IBCocoaTouchPlugin
- com.apple.InterfaceBuilder.IBCocoaTouchPlugin
- com.apple.InterfaceBuilder.IBCocoaTouchPlugin
- com.apple.InterfaceBuilder.IBCocoaTouchPlugin
- com.apple.InterfaceBuilder.IBCocoaTouchPlugin
- com.apple.InterfaceBuilder.IBCocoaTouchPlugin
- com.apple.InterfaceBuilder.IBCocoaTouchPlugin
- com.apple.InterfaceBuilder.IBCocoaTouchPlugin
- com.apple.InterfaceBuilder.IBCocoaTouchPlugin
-
- com.apple.InterfaceBuilder.IBCocoaTouchPlugin
- com.apple.InterfaceBuilder.IBCocoaTouchPlugin
-
-
-
- YES
-
-
-
-
-
- YES
-
-
-
-
- 70
-
-
-
- YES
-
- ActivityModule
- UIView
-
- IBProjectSource
- ./Classes/ActivityModule.h
-
-
-
- AddSiteViewController
- UIViewController
-
- YES
-
- YES
- addSite
- checkSiteAddress
- doAddButton
- doCancelButton
- toggleAddFolder:
-
-
- YES
- id
- id
- id
- id
- id
-
-
-
- YES
-
- YES
- addSite
- checkSiteAddress
- doAddButton
- doCancelButton
- toggleAddFolder:
-
-
- YES
-
- addSite
- id
-
-
- checkSiteAddress
- id
-
-
- doAddButton
- id
-
-
- doCancelButton
- id
-
-
- toggleAddFolder:
- id
-
-
-
-
- YES
-
- YES
- activityIndicator
- addButton
- addFolderButton
- addFolderInput
- addingLabel
- appDelegate
- cancelButton
- errorLabel
- folderPicker
- inFolderInput
- navBar
- siteActivityIndicator
- siteAddressInput
- siteScrollView
- siteTable
-
-
- YES
- UIActivityIndicatorView
- UIBarButtonItem
- UIButton
- UITextField
- UILabel
- NewsBlurAppDelegate
- UIBarButtonItem
- UILabel
- UIPickerView
- UITextField
- UINavigationBar
- UIActivityIndicatorView
- UITextField
- UIScrollView
- UITableView
-
-
-
- YES
-
- YES
- activityIndicator
- addButton
- addFolderButton
- addFolderInput
- addingLabel
- appDelegate
- cancelButton
- errorLabel
- folderPicker
- inFolderInput
- navBar
- siteActivityIndicator
- siteAddressInput
- siteScrollView
- siteTable
-
-
- YES
-
- activityIndicator
- UIActivityIndicatorView
-
-
- addButton
- UIBarButtonItem
-
-
- addFolderButton
- UIButton
-
-
- addFolderInput
- UITextField
-
-
- addingLabel
- UILabel
-
-
- appDelegate
- NewsBlurAppDelegate
-
-
- cancelButton
- UIBarButtonItem
-
-
- errorLabel
- UILabel
-
-
- folderPicker
- UIPickerView
-
-
- inFolderInput
- UITextField
-
-
- navBar
- UINavigationBar
-
-
- siteActivityIndicator
- UIActivityIndicatorView
-
-
- siteAddressInput
- UITextField
-
-
- siteScrollView
- UIScrollView
-
-
- siteTable
- UITableView
-
-
-
-
- IBProjectSource
- ./Classes/AddSiteViewController.h
-
-
-
- BaseViewController
- UIViewController
-
- IBProjectSource
- ./Classes/BaseViewController.h
-
-
-
- DashboardViewController
- UIViewController
-
- YES
-
- YES
- doLogout:
- tapSegmentedButton:
-
-
- YES
- id
- id
-
-
-
- YES
-
- YES
- doLogout:
- tapSegmentedButton:
-
-
- YES
-
- doLogout:
- id
-
-
- tapSegmentedButton:
- id
-
-
-
-
- YES
-
- YES
- activitiesModule
- appDelegate
- feedbackWebView
- interactionsModule
- segmentedButton
- toolbar
- topToolbar
-
-
- YES
- ActivityModule
- NewsBlurAppDelegate
- UIWebView
- InteractionsModule
- UISegmentedControl
- UIToolbar
- UIToolbar
-
-
-
- YES
-
- YES
- activitiesModule
- appDelegate
- feedbackWebView
- interactionsModule
- segmentedButton
- toolbar
- topToolbar
-
-
- YES
-
- activitiesModule
- ActivityModule
-
-
- appDelegate
- NewsBlurAppDelegate
-
-
- feedbackWebView
- UIWebView
-
-
- interactionsModule
- InteractionsModule
-
-
- segmentedButton
- UISegmentedControl
-
-
- toolbar
- UIToolbar
-
-
- topToolbar
- UIToolbar
-
-
-
-
- IBProjectSource
- ./Classes/DashboardViewController.h
-
-
-
- FeedDetailMenuViewController
- UIViewController
-
- YES
-
- YES
- changeOrder:
- changeReadFilter:
-
-
- YES
- id
- id
-
-
-
- YES
-
- YES
- changeOrder:
- changeReadFilter:
-
-
- YES
-
- changeOrder:
- id
-
-
- changeReadFilter:
- id
-
-
-
-
- YES
-
- YES
- appDelegate
- menuTableView
- orderSegmentedControl
- readFilterSegmentedControl
-
-
- YES
- NewsBlurAppDelegate
- UITableView
- UISegmentedControl
- UISegmentedControl
-
-
-
- YES
-
- YES
- appDelegate
- menuTableView
- orderSegmentedControl
- readFilterSegmentedControl
-
-
- YES
-
- appDelegate
- NewsBlurAppDelegate
-
-
- menuTableView
- UITableView
-
-
- orderSegmentedControl
- UISegmentedControl
-
-
- readFilterSegmentedControl
- UISegmentedControl
-
-
-
-
- IBProjectSource
- ./Classes/FeedDetailMenuViewController.h
-
-
-
- FeedDetailViewController
- BaseViewController
-
- YES
-
- YES
- doOpenMarkReadActionSheet:
- doOpenSettingsActionSheet:
-
-
- YES
- id
- id
-
-
-
- YES
-
- YES
- doOpenMarkReadActionSheet:
- doOpenSettingsActionSheet:
-
-
- YES
-
- doOpenMarkReadActionSheet:
- id
-
-
- doOpenSettingsActionSheet:
- id
-
-
-
-
- YES
-
- YES
- appDelegate
- feedMarkReadButton
- rightToolbar
- separatorBarButton
- settingsBarButton
- spacer2BarButton
- spacer3BarButton
- spacerBarButton
- storyTitlesTable
-
-
- YES
- NewsBlurAppDelegate
- UIBarButtonItem
- TransparentToolbar
- UIBarButtonItem
- UIBarButtonItem
- UIBarButtonItem
- UIBarButtonItem
- UIBarButtonItem
- UITableView
-
-
-
- YES
-
- YES
- appDelegate
- feedMarkReadButton
- rightToolbar
- separatorBarButton
- settingsBarButton
- spacer2BarButton
- spacer3BarButton
- spacerBarButton
- storyTitlesTable
-
-
- YES
-
- appDelegate
- NewsBlurAppDelegate
-
-
- feedMarkReadButton
- UIBarButtonItem
-
-
- rightToolbar
- TransparentToolbar
-
-
- separatorBarButton
- UIBarButtonItem
-
-
- settingsBarButton
- UIBarButtonItem
-
-
- spacer2BarButton
- UIBarButtonItem
-
-
- spacer3BarButton
- UIBarButtonItem
-
-
- spacerBarButton
- UIBarButtonItem
-
-
- storyTitlesTable
- UITableView
-
-
-
-
- IBProjectSource
- ./Classes/FeedDetailViewController.h
-
-
-
- FeedsMenuViewController
- UIViewController
-
- YES
-
- YES
- appDelegate
- menuTableView
-
-
- YES
- NewsBlurAppDelegate
- UITableView
-
-
-
- YES
-
- YES
- appDelegate
- menuTableView
-
-
- YES
-
- appDelegate
- NewsBlurAppDelegate
-
-
- menuTableView
- UITableView
-
-
-
-
- IBProjectSource
- ./Classes/FeedsMenuViewController.h
-
-
-
- FirstTimeUserAddFriendsViewController
- UIViewController
-
- YES
-
- YES
- tapFacebookButton
- tapNextButton
- tapTwitterButton
- toggleAutoFollowFriends:
-
-
- YES
- id
- id
- id
- id
-
-
-
- YES
-
- YES
- tapFacebookButton
- tapNextButton
- tapTwitterButton
- toggleAutoFollowFriends:
-
-
- YES
-
- tapFacebookButton
- id
-
-
- tapNextButton
- id
-
-
- tapTwitterButton
- id
-
-
- toggleAutoFollowFriends:
- id
-
-
-
-
- YES
-
- YES
- appDelegate
- facebookActivityIndicator
- facebookButton
- friendsLabel
- nextButton
- twitterActivityIndicator
- twitterButton
-
-
- YES
- NewsBlurAppDelegate
- UIActivityIndicatorView
- UIButton
- UILabel
- UIBarButtonItem
- UIActivityIndicatorView
- UIButton
-
-
-
- YES
-
- YES
- appDelegate
- facebookActivityIndicator
- facebookButton
- friendsLabel
- nextButton
- twitterActivityIndicator
- twitterButton
-
-
- YES
-
- appDelegate
- NewsBlurAppDelegate
-
-
- facebookActivityIndicator
- UIActivityIndicatorView
-
-
- facebookButton
- UIButton
-
-
- friendsLabel
- UILabel
-
-
- nextButton
- UIBarButtonItem
-
-
- twitterActivityIndicator
- UIActivityIndicatorView
-
-
- twitterButton
- UIButton
-
-
-
-
- IBProjectSource
- ./Classes/FirstTimeUserAddFriendsViewController.h
-
-
-
- FirstTimeUserAddNewsBlurViewController
- UIViewController
-
- YES
-
- YES
- tapNewsBlurButton:
- tapNextButton
- tapPopularButton:
-
-
- YES
- id
- id
- id
-
-
-
- YES
-
- YES
- tapNewsBlurButton:
- tapNextButton
- tapPopularButton:
-
-
- YES
-
- tapNewsBlurButton:
- id
-
-
- tapNextButton
- id
-
-
- tapPopularButton:
- id
-
-
-
-
- YES
-
- YES
- appDelegate
- instructionsLabel
- nextButton
-
-
- YES
- NewsBlurAppDelegate
- UILabel
- UIBarButtonItem
-
-
-
- YES
-
- YES
- appDelegate
- instructionsLabel
- nextButton
-
-
- YES
-
- appDelegate
- NewsBlurAppDelegate
-
-
- instructionsLabel
- UILabel
-
-
- nextButton
- UIBarButtonItem
-
-
-
-
- IBProjectSource
- ./Classes/FirstTimeUserAddNewsBlurViewController.h
-
-
-
- FirstTimeUserAddSitesViewController
- UIViewController
-
- tapNextButton
- id
-
-
- tapNextButton
-
- tapNextButton
- id
-
-
-
- YES
-
- YES
- activityIndicator
- appDelegate
- categoriesTable
- googleReaderButton
- googleReaderButtonWrapper
- instructionLabel
- nextButton
- scrollView
-
-
- YES
- UIActivityIndicatorView
- NewsBlurAppDelegate
- UITableView
- UIButton
- UIView
- UILabel
- UIBarButtonItem
- UIScrollView
-
-
-
- YES
-
- YES
- activityIndicator
- appDelegate
- categoriesTable
- googleReaderButton
- googleReaderButtonWrapper
- instructionLabel
- nextButton
- scrollView
-
-
- YES
-
- activityIndicator
- UIActivityIndicatorView
-
-
- appDelegate
- NewsBlurAppDelegate
-
-
- categoriesTable
- UITableView
-
-
- googleReaderButton
- UIButton
-
-
- googleReaderButtonWrapper
- UIView
-
-
- instructionLabel
- UILabel
-
-
- nextButton
- UIBarButtonItem
-
-
- scrollView
- UIScrollView
-
-
-
-
- IBProjectSource
- ./Classes/FirstTimeUserAddSitesViewController.h
-
-
-
- FirstTimeUserViewController
- UIViewController
-
- tapNextButton
- id
-
-
- tapNextButton
-
- tapNextButton
- id
-
-
-
- YES
-
- YES
- appDelegate
- footer
- header
- logo
- nextButton
-
-
- YES
- NewsBlurAppDelegate
- UILabel
- UILabel
- UIImageView
- UIBarButtonItem
-
-
-
- YES
-
- YES
- appDelegate
- footer
- header
- logo
- nextButton
-
-
- YES
-
- appDelegate
- NewsBlurAppDelegate
-
-
- footer
- UILabel
-
-
- header
- UILabel
-
-
- logo
- UIImageView
-
-
- nextButton
- UIBarButtonItem
-
-
-
-
- IBProjectSource
- ./Classes/FirstTimeUserViewController.h
-
-
-
- FontSettingsViewController
- UIViewController
-
- YES
-
- YES
- changeFontSize:
- changeFontStyle:
-
-
- YES
- id
- id
-
-
-
- YES
-
- YES
- changeFontSize:
- changeFontStyle:
-
-
- YES
-
- changeFontSize:
- id
-
-
- changeFontStyle:
- id
-
-
-
-
- YES
-
- YES
- appDelegate
- fontSizeSegment
- fontStyleSegment
- largeFontSizeLabel
- menuTableView
- smallFontSizeLabel
-
-
- YES
- NewsBlurAppDelegate
- UISegmentedControl
- UISegmentedControl
- UILabel
- UITableView
- UILabel
-
-
-
- YES
-
- YES
- appDelegate
- fontSizeSegment
- fontStyleSegment
- largeFontSizeLabel
- menuTableView
- smallFontSizeLabel
-
-
- YES
-
- appDelegate
- NewsBlurAppDelegate
-
-
- fontSizeSegment
- UISegmentedControl
-
-
- fontStyleSegment
- UISegmentedControl
-
-
- largeFontSizeLabel
- UILabel
-
-
- menuTableView
- UITableView
-
-
- smallFontSizeLabel
- UILabel
-
-
-
-
- IBProjectSource
- ./Classes/FontSettingsViewController.h
-
-
-
- FriendsListViewController
- UIViewController
-
- YES
-
- YES
- appDelegate
- friendSearchBar
- friendsTable
-
-
- YES
- NewsBlurAppDelegate
- UISearchBar
- UITableView
-
-
-
- YES
-
- YES
- appDelegate
- friendSearchBar
- friendsTable
-
-
- YES
-
- appDelegate
- NewsBlurAppDelegate
-
-
- friendSearchBar
- UISearchBar
-
-
- friendsTable
- UITableView
-
-
-
-
- IBProjectSource
- ./Classes/FriendsListViewController.h
-
-
-
- InteractionsModule
- UIView
-
- IBProjectSource
- ./Classes/InteractionsModule.h
-
-
-
- LoginViewController
- UIViewController
-
- YES
-
- YES
- selectLogin
- selectLoginSignup
- selectSignUp
- tapLoginButton
- tapSignUpButton
-
-
- YES
- id
- id
- id
- id
- id
-
-
-
- YES
-
- YES
- selectLogin
- selectLoginSignup
- selectSignUp
- tapLoginButton
- tapSignUpButton
-
-
- YES
-
- selectLogin
- id
-
-
- selectLoginSignup
- id
-
-
- selectSignUp
- id
-
-
- tapLoginButton
- id
-
-
- tapSignUpButton
- id
-
-
-
-
- YES
-
- YES
- appDelegate
- emailInput
- emailLabel
- errorLabel
- logInView
- loginControl
- passwordInput
- passwordLabel
- passwordOptionalLabel
- selectLoginButton
- selectSignUpButton
- signUpPasswordInput
- signUpUsernameInput
- signUpView
- usernameInput
- usernameLabel
- usernameOrEmailLabel
-
-
- YES
- NewsBlurAppDelegate
- UITextField
- UILabel
- UILabel
- UIView
- UISegmentedControl
- UITextField
- UILabel
- UILabel
- UIButton
- UIButton
- UITextField
- UITextField
- UIView
- UITextField
- UILabel
- UILabel
-
-
-
- YES
-
- YES
- appDelegate
- emailInput
- emailLabel
- errorLabel
- logInView
- loginControl
- passwordInput
- passwordLabel
- passwordOptionalLabel
- selectLoginButton
- selectSignUpButton
- signUpPasswordInput
- signUpUsernameInput
- signUpView
- usernameInput
- usernameLabel
- usernameOrEmailLabel
-
-
- YES
-
- appDelegate
- NewsBlurAppDelegate
-
-
- emailInput
- UITextField
-
-
- emailLabel
- UILabel
-
-
- errorLabel
- UILabel
-
-
- logInView
- UIView
-
-
- loginControl
- UISegmentedControl
-
-
- passwordInput
- UITextField
-
-
- passwordLabel
- UILabel
-
-
- passwordOptionalLabel
- UILabel
-
-
- selectLoginButton
- UIButton
-
-
- selectSignUpButton
- UIButton
-
-
- signUpPasswordInput
- UITextField
-
-
- signUpUsernameInput
- UITextField
-
-
- signUpView
- UIView
-
-
- usernameInput
- UITextField
-
-
- usernameLabel
- UILabel
-
-
- usernameOrEmailLabel
- UILabel
-
-
-
-
- IBProjectSource
- ./Classes/LoginViewController.h
-
-
-
- MoveSiteViewController
- UIViewController
-
- YES
-
- YES
- doCancelButton
- doMoveButton
- moveFolder
- moveSite
-
-
- YES
- id
- id
- id
- id
-
-
-
- YES
-
- YES
- doCancelButton
- doMoveButton
- moveFolder
- moveSite
-
-
- YES
-
- doCancelButton
- id
-
-
- doMoveButton
- id
-
-
- moveFolder
- id
-
-
- moveSite
- id
-
-
-
-
- YES
-
- YES
- activityIndicator
- appDelegate
- cancelButton
- errorLabel
- folderPicker
- fromFolderInput
- moveButton
- movingLabel
- navBar
- titleLabel
- toFolderInput
-
-
- YES
- UIActivityIndicatorView
- NewsBlurAppDelegate
- UIBarButtonItem
- UILabel
- UIPickerView
- UITextField
- UIBarButtonItem
- UILabel
- UINavigationBar
- UILabel
- UITextField
-
-
-
- YES
-
- YES
- activityIndicator
- appDelegate
- cancelButton
- errorLabel
- folderPicker
- fromFolderInput
- moveButton
- movingLabel
- navBar
- titleLabel
- toFolderInput
-
-
- YES
-
- activityIndicator
- UIActivityIndicatorView
-
-
- appDelegate
- NewsBlurAppDelegate
-
-
- cancelButton
- UIBarButtonItem
-
-
- errorLabel
- UILabel
-
-
- folderPicker
- UIPickerView
-
-
- fromFolderInput
- UITextField
-
-
- moveButton
- UIBarButtonItem
-
-
- movingLabel
- UILabel
-
-
- navBar
- UINavigationBar
-
-
- titleLabel
- UILabel
-
-
- toFolderInput
- UITextField
-
-
-
-
- IBProjectSource
- ./Classes/MoveSiteViewController.h
-
-
-
- NBContainerViewController
- UIViewController
-
- appDelegate
- NewsBlurAppDelegate
-
-
- appDelegate
-
- appDelegate
- NewsBlurAppDelegate
-
-
-
- IBProjectSource
- ./Classes/NBContainerViewController.h
-
-
-
- NSLayoutConstraint
- NSObject
-
- IBProjectSource
- ./Classes/NSLayoutConstraint.h
-
-
-
- NewsBlurAppDelegate
- BaseViewController
-
- YES
-
- YES
- addSiteViewController
- dashboardViewController
- feedDashboardViewController
- feedDetailMenuViewController
- feedDetailViewController
- feedsMenuViewController
- feedsViewController
- firstTimeUserAddFriendsViewController
- firstTimeUserAddNewsBlurViewController
- firstTimeUserAddSitesViewController
- firstTimeUserViewController
- fontSettingsViewController
- friendsListViewController
- ftuxNavigationController
- loginViewController
- masterContainerViewController
- moveSiteViewController
- navigationController
- originalStoryViewController
- shareViewController
- storyDetailViewController
- storyPageControl
- trainerViewController
- userProfileViewController
- window
-
-
- YES
- AddSiteViewController
- DashboardViewController
- FeedDashboardViewController
- FeedDetailMenuViewController
- FeedDetailViewController
- FeedsMenuViewController
- NewsBlurViewController
- FirstTimeUserAddFriendsViewController
- FirstTimeUserAddNewsBlurViewController
- FirstTimeUserAddSitesViewController
- FirstTimeUserViewController
- FontSettingsViewController
- FriendsListViewController
- UINavigationController
- LoginViewController
- NBContainerViewController
- MoveSiteViewController
- UINavigationController
- OriginalStoryViewController
- ShareViewController
- StoryDetailViewController
- StoryPageControl
- TrainerViewController
- UserProfileViewController
- UIWindow
-
-
-
- YES
-
- YES
- addSiteViewController
- dashboardViewController
- feedDashboardViewController
- feedDetailMenuViewController
- feedDetailViewController
- feedsMenuViewController
- feedsViewController
- firstTimeUserAddFriendsViewController
- firstTimeUserAddNewsBlurViewController
- firstTimeUserAddSitesViewController
- firstTimeUserViewController
- fontSettingsViewController
- friendsListViewController
- ftuxNavigationController
- loginViewController
- masterContainerViewController
- moveSiteViewController
- navigationController
- originalStoryViewController
- shareViewController
- storyDetailViewController
- storyPageControl
- trainerViewController
- userProfileViewController
- window
-
-
- YES
-
- addSiteViewController
- AddSiteViewController
-
-
- dashboardViewController
- DashboardViewController
-
-
- feedDashboardViewController
- FeedDashboardViewController
-
-
- feedDetailMenuViewController
- FeedDetailMenuViewController
-
-
- feedDetailViewController
- FeedDetailViewController
-
-
- feedsMenuViewController
- FeedsMenuViewController
-
-
- feedsViewController
- NewsBlurViewController
-
-
- firstTimeUserAddFriendsViewController
- FirstTimeUserAddFriendsViewController
-
-
- firstTimeUserAddNewsBlurViewController
- FirstTimeUserAddNewsBlurViewController
-
-
- firstTimeUserAddSitesViewController
- FirstTimeUserAddSitesViewController
-
-
- firstTimeUserViewController
- FirstTimeUserViewController
-
-
- fontSettingsViewController
- FontSettingsViewController
-
-
- friendsListViewController
- FriendsListViewController
-
-
- ftuxNavigationController
- UINavigationController
-
-
- loginViewController
- LoginViewController
-
-
- masterContainerViewController
- NBContainerViewController
-
-
- moveSiteViewController
- MoveSiteViewController
-
-
- navigationController
- UINavigationController
-
-
- originalStoryViewController
- OriginalStoryViewController
-
-
- shareViewController
- ShareViewController
-
-
- storyDetailViewController
- StoryDetailViewController
-
-
- storyPageControl
- StoryPageControl
-
-
- trainerViewController
- TrainerViewController
-
-
- userProfileViewController
- UserProfileViewController
-
-
- window
- UIWindow
-
-
-
-
- IBProjectSource
- ./Classes/NewsBlurAppDelegate.h
-
-
-
- NewsBlurViewController
- BaseViewController
-
- YES
-
- YES
- sectionTapped:
- sectionUntapped:
- sectionUntappedOutside:
- selectIntelligence
- showInteractionsPopover:
- showSettingsPopover:
- tapAddSite:
-
-
- YES
- UIButton
- UIButton
- UIButton
- id
- id
- id
- id
-
-
-
- YES
-
- YES
- sectionTapped:
- sectionUntapped:
- sectionUntappedOutside:
- selectIntelligence
- showInteractionsPopover:
- showSettingsPopover:
- tapAddSite:
-
-
- YES
-
- sectionTapped:
- UIButton
-
-
- sectionUntapped:
- UIButton
-
-
- sectionUntappedOutside:
- UIButton
-
-
- selectIntelligence
- id
-
-
- showInteractionsPopover:
- id
-
-
- showSettingsPopover:
- id
-
-
- tapAddSite:
- id
-
-
-
-
- YES
-
- YES
- activitiesButton
- addBarButton
- appDelegate
- feedScoreSlider
- feedTitlesTable
- feedViewToolbar
- homeButton
- innerView
- intelligenceControl
- noFocusMessage
- settingsBarButton
- toolbarLeftMargin
-
-
- YES
- UIBarButtonItem
- UIBarButtonItem
- NewsBlurAppDelegate
- UISlider
- UITableView
- UIToolbar
- UIBarButtonItem
- UIView
- UISegmentedControl
- UIView
- UIBarButtonItem
- UIBarButtonItem
-
-
-
- YES
-
- YES
- activitiesButton
- addBarButton
- appDelegate
- feedScoreSlider
- feedTitlesTable
- feedViewToolbar
- homeButton
- innerView
- intelligenceControl
- noFocusMessage
- settingsBarButton
- toolbarLeftMargin
-
-
- YES
-
- activitiesButton
- UIBarButtonItem
-
-
- addBarButton
- UIBarButtonItem
-
-
- appDelegate
- NewsBlurAppDelegate
-
-
- feedScoreSlider
- UISlider
-
-
- feedTitlesTable
- UITableView
-
-
- feedViewToolbar
- UIToolbar
-
-
- homeButton
- UIBarButtonItem
-
-
- innerView
- UIView
-
-
- intelligenceControl
- UISegmentedControl
-
-
- noFocusMessage
- UIView
-
-
- settingsBarButton
- UIBarButtonItem
-
-
- toolbarLeftMargin
- UIBarButtonItem
-
-
-
-
- IBProjectSource
- ./Classes/NewsBlurViewController.h
-
-
-
- OriginalStoryViewController
- BaseViewController
-
- YES
-
- YES
- doCloseOriginalStoryViewController
- doOpenActionSheet
- loadAddress:
- webViewGoBack:
- webViewGoForward:
- webViewRefresh:
-
-
- YES
- id
- id
- id
- id
- id
- id
-
-
-
- YES
-
- YES
- doCloseOriginalStoryViewController
- doOpenActionSheet
- loadAddress:
- webViewGoBack:
- webViewGoForward:
- webViewRefresh:
-
-
- YES
-
- doCloseOriginalStoryViewController
- id
-
-
- doOpenActionSheet
- id
-
-
- loadAddress:
- id
-
-
- webViewGoBack:
- id
-
-
- webViewGoForward:
- id
-
-
- webViewRefresh:
- id
-
-
-
-
- YES
-
- YES
- appDelegate
- back
- closeButton
- forward
- pageAction
- pageTitle
- pageUrl
- refresh
- toolbar
- webView
-
-
- YES
- NewsBlurAppDelegate
- UIBarButtonItem
- UIBarButtonItem
- UIBarButtonItem
- UIBarButtonItem
- UILabel
- UITextField
- UIBarButtonItem
- UIToolbar
- UIWebView
-
-
-
- YES
-
- YES
- appDelegate
- back
- closeButton
- forward
- pageAction
- pageTitle
- pageUrl
- refresh
- toolbar
- webView
-
-
- YES
-
- appDelegate
- NewsBlurAppDelegate
-
-
- back
- UIBarButtonItem
-
-
- closeButton
- UIBarButtonItem
-
-
- forward
- UIBarButtonItem
-
-
- pageAction
- UIBarButtonItem
-
-
- pageTitle
- UILabel
-
-
- pageUrl
- UITextField
-
-
- refresh
- UIBarButtonItem
-
-
- toolbar
- UIToolbar
-
-
- webView
- UIWebView
-
-
-
-
- IBProjectSource
- ./Classes/OriginalStoryViewController.h
-
-
-
- ShareViewController
- UIViewController
-
- YES
-
- YES
- doCancelButton:
- doReplyToComment:
- doShareThisStory:
- doToggleButton:
-
-
- YES
- id
- id
- id
- id
-
-
-
- YES
-
- YES
- doCancelButton:
- doReplyToComment:
- doShareThisStory:
- doToggleButton:
-
-
- YES
-
- doCancelButton:
- id
-
-
- doReplyToComment:
- id
-
-
- doShareThisStory:
- id
-
-
- doToggleButton:
- id
-
-
-
-
- YES
-
- YES
- appDelegate
- appdotnetButton
- commentField
- facebookButton
- keyboardHeight
- storyTitle
- submitButton
- twitterButton
-
-
- YES
- NewsBlurAppDelegate
- UIButton
- UITextView
- UIButton
- NSLayoutConstraint
- UILabel
- UIBarButtonItem
- UIButton
-
-
-
- YES
-
- YES
- appDelegate
- appdotnetButton
- commentField
- facebookButton
- keyboardHeight
- storyTitle
- submitButton
- twitterButton
-
-
- YES
-
- appDelegate
- NewsBlurAppDelegate
-
-
- appdotnetButton
- UIButton
-
-
- commentField
- UITextView
-
-
- facebookButton
- UIButton
-
-
- keyboardHeight
- NSLayoutConstraint
-
-
- storyTitle
- UILabel
-
-
- submitButton
- UIBarButtonItem
-
-
- twitterButton
- UIButton
-
-
-
-
- IBProjectSource
- ./Classes/ShareViewController.h
-
-
-
- StoryDetailViewController
- BaseViewController
-
- YES
-
- YES
- appDelegate
- feedTitleGradient
- innerView
- noStorySelectedLabel
- webView
-
-
- YES
- NewsBlurAppDelegate
- UIView
- UIView
- UILabel
- UIWebView
-
-
-
- YES
-
- YES
- appDelegate
- feedTitleGradient
- innerView
- noStorySelectedLabel
- webView
-
-
- YES
-
- appDelegate
- NewsBlurAppDelegate
-
-
- feedTitleGradient
- UIView
-
-
- innerView
- UIView
-
-
- noStorySelectedLabel
- UILabel
-
-
- webView
- UIWebView
-
-
-
-
- IBProjectSource
- ./Classes/StoryDetailViewController.h
-
-
-
- StoryPageControl
- BaseViewController
-
- YES
-
- YES
- doNextUnreadStory
- doPreviousStory
- showOriginalSubview:
- tapProgressBar:
- toggleFontSize:
-
-
- YES
- id
- id
- id
- id
- id
-
-
-
- YES
-
- YES
- doNextUnreadStory
- doPreviousStory
- showOriginalSubview:
- tapProgressBar:
- toggleFontSize:
-
-
- YES
-
- doNextUnreadStory
- id
-
-
- doPreviousStory
- id
-
-
- showOriginalSubview:
- id
-
-
- tapProgressBar:
- id
-
-
- toggleFontSize:
- id
-
-
-
-
- YES
-
- YES
- appDelegate
- bottomPlaceholderToolbar
- buttonAction
- buttonNext
- buttonPrevious
- fontSettingsButton
- loadingIndicator
- originalStoryButton
- pageControl
- progressView
- progressViewContainer
- rightToolbar
- scrollView
- separatorBarButton
- spacer2BarButton
- spacer3BarButton
- spacerBarButton
- subscribeButton
- traverseView
-
-
- YES
- NewsBlurAppDelegate
- UIToolbar
- UIBarButtonItem
- UIButton
- UIButton
- UIBarButtonItem
- UIActivityIndicatorView
- UIBarButtonItem
- UIPageControl
- UIProgressView
- UIView
- TransparentToolbar
- UIScrollView
- UIBarButtonItem
- UIBarButtonItem
- UIBarButtonItem
- UIBarButtonItem
- UIBarButtonItem
- UIView
-
-
-
- YES
-
- YES
- appDelegate
- bottomPlaceholderToolbar
- buttonAction
- buttonNext
- buttonPrevious
- fontSettingsButton
- loadingIndicator
- originalStoryButton
- pageControl
- progressView
- progressViewContainer
- rightToolbar
- scrollView
- separatorBarButton
- spacer2BarButton
- spacer3BarButton
- spacerBarButton
- subscribeButton
- traverseView
-
-
- YES
-
- appDelegate
- NewsBlurAppDelegate
-
-
- bottomPlaceholderToolbar
- UIToolbar
-
-
- buttonAction
- UIBarButtonItem
-
-
- buttonNext
- UIButton
-
-
- buttonPrevious
- UIButton
-
-
- fontSettingsButton
- UIBarButtonItem
-
-
- loadingIndicator
- UIActivityIndicatorView
-
-
- originalStoryButton
- UIBarButtonItem
-
-
- pageControl
- UIPageControl
-
-
- progressView
- UIProgressView
-
-
- progressViewContainer
- UIView
-
-
- rightToolbar
- TransparentToolbar
-
-
- scrollView
- UIScrollView
-
-
- separatorBarButton
- UIBarButtonItem
-
-
- spacer2BarButton
- UIBarButtonItem
-
-
- spacer3BarButton
- UIBarButtonItem
-
-
- spacerBarButton
- UIBarButtonItem
-
-
- subscribeButton
- UIBarButtonItem
-
-
- traverseView
- UIView
-
-
-
-
- IBProjectSource
- ./Classes/StoryPageControl.h
-
-
-
- TrainerViewController
- BaseViewController
-
- doCloseDialog:
- id
-
-
- doCloseDialog:
-
- doCloseDialog:
- id
-
-
-
- YES
-
- YES
- appDelegate
- closeButton
- navBar
- webView
-
-
- YES
- NewsBlurAppDelegate
- UIBarButtonItem
- UINavigationBar
- TrainerWebView
-
-
-
- YES
-
- YES
- appDelegate
- closeButton
- navBar
- webView
-
-
- YES
-
- appDelegate
- NewsBlurAppDelegate
-
-
- closeButton
- UIBarButtonItem
-
-
- navBar
- UINavigationBar
-
-
- webView
- TrainerWebView
-
-
-
-
- IBProjectSource
- ./Classes/TrainerViewController.h
-
-
-
- TrainerWebView
- UIWebView
-
- IBProjectSource
- ./Classes/TrainerWebView.h
-
-
-
- TransparentToolbar
- UIToolbar
-
- IBProjectSource
- ./Classes/TransparentToolbar.h
-
-
-
- UserProfileViewController
- UIViewController
-
- IBProjectSource
- ./Classes/UserProfileViewController.h
-
-
-
-
- 0
- IBCocoaTouchFramework
-
- com.apple.InterfaceBuilder.CocoaTouchPlugin.iPhoneOS
-
-
-
- com.apple.InterfaceBuilder.CocoaTouchPlugin.InterfaceBuilder3
-
-
- YES
- 3
-
- g_icn_folder_add.png
- {16, 16}
-
- 2083
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/clients/ios/Resources-iPhone/MoveSiteViewController.xib b/clients/ios/Resources-iPhone/MoveSiteViewController.xib
index 54e54d44c..764439f65 100644
--- a/clients/ios/Resources-iPhone/MoveSiteViewController.xib
+++ b/clients/ios/Resources-iPhone/MoveSiteViewController.xib
@@ -1,2272 +1,138 @@
-
-
-
- 1552
- 12F37
- 3084
- 1187.39
- 626.00
-
- com.apple.InterfaceBuilder.IBCocoaTouchPlugin
- 2083
-
-
- IBProxyObject
- IBUIActivityIndicatorView
- IBUIBarButtonItem
- IBUILabel
- IBUINavigationBar
- IBUINavigationItem
- IBUIPickerView
- IBUITextField
- IBUIView
-
-
- com.apple.InterfaceBuilder.IBCocoaTouchPlugin
-
-
- PluginDependencyRecalculationVersion
-
-
-
-
- IBFilesOwner
- IBCocoaTouchFramework
-
-
- IBFirstResponder
- IBCocoaTouchFramework
-
-
-
- 292
-
-
-
- 290
- {{87, 67}, {219, 26}}
-
-
-
- _NS:196
-
- 3
- MCAwAA
-
- NO
- YES
- IBCocoaTouchFramework
-
-
-
- 292
- {{7, 65}, {61, 28}}
-
-
-
- _NS:311
- NO
- YES
- 4
- NO
- IBCocoaTouchFramework
- MOVING
-
- 3
- MC4zMzMzMzMzMzMzAA
-
-
-
- 3
- MQA
-
- 2
-
-
- {0, 1}
- 1
- 10
- 2
-
- 1
- 12
-
-
- Helvetica
- 12
- 16
-
-
-
-
- 292
- {{19, 105}, {49, 31}}
-
-
-
- _NS:311
- NO
- YES
- 4
- NO
- IBCocoaTouchFramework
- FROM
-
-
-
- {0, 1}
- 1
- 10
- 2
-
-
-
-
-
- 292
- {{19, 148}, {49, 31}}
-
-
-
- _NS:311
- NO
- YES
- 4
- NO
- IBCocoaTouchFramework
- INTO
-
-
-
- {0, 1}
- 1
- 10
- 2
-
-
-
-
-
- -2147483358
- {{111, 184}, {189, 52}}
-
-
-
- _NS:311
- NO
- YES
- 4
- NO
- IBCocoaTouchFramework
- Moving...
-
-
-
- {0, 1}
- 1
- 10
-
- Helvetica
- Helvetica
- 0
- 17
-
-
- Helvetica
- 17
- 16
-
-
-
-
- -2147483358
- {{20, 188}, {280, 48}}
-
-
-
- _NS:311
- NO
- YES
- 4
- NO
- IBCocoaTouchFramework
- Error
-
- 1
- MC45MjQwODM3MDk3IDAuMzU5MTI4Mjk2NCAwLjIzMjY3MTI3NTcAA
-
-
-
- 3
- MQA
-
-
- {0, 1}
- 1
- 17
- 4
- 1
-
-
- 280
-
-
-
- -2147483360
- {{86, 201}, {20, 20}}
-
-
-
- _NS:824
- NO
- IBCocoaTouchFramework
- 2
-
-
-
- 290
- {320, 44}
-
-
-
- _NS:240
- IBCocoaTouchFramework
-
-
-
-
-
- Cancel
- IBCocoaTouchFramework
- 50
- 1
-
-
-
- Move Site to Folder
- IBCocoaTouchFramework
- 2
-
-
- IBCocoaTouchFramework
-
-
-
-
-
- 266
- {{0, 244}, {320, 216}}
-
-
-
- _NS:624
- IBCocoaTouchFramework
- YES
-
-
-
- 290
- {{81, 148}, {219, 31}}
-
-
-
- _NS:294
- NO
- YES
-
-
-
- IBCocoaTouchFramework
- 0
-
- 3
- Choose a folder
-
- 3
- MAA
-
-
- YES
- 12
-
- IBCocoaTouchFramework
-
-
- Helvetica-Bold
- Helvetica
- 2
- 14
-
-
- Helvetica-Bold
- 14
- 16
-
-
-
-
- 290
- {{87, 105}, {219, 31}}
-
-
-
- _NS:294
- NO
- YES
-
-
-
- IBCocoaTouchFramework
- 0
-
-
- YES
- 12
-
- IBCocoaTouchFramework
-
-
-
-
-
- {{0, 20}, {320, 460}}
-
-
-
-
- 2
- MC45MDk4MDM5ODY1IDAuOTE3NjQ3MTIzMyAwLjg5NDExNzcxMwA
-
-
- IBCocoaTouchFramework
-
-
-
-
-
-
- activityIndicator
-
-
-
- 21
-
-
-
- cancelButton
-
-
-
- 23
-
-
-
- errorLabel
-
-
-
- 24
-
-
-
- folderPicker
-
-
-
- 25
-
-
-
- moveButton
-
-
-
- 26
-
-
-
- movingLabel
-
-
-
- 27
-
-
-
- navBar
-
-
-
- 28
-
-
-
- toFolderInput
-
-
-
- 29
-
-
-
- view
-
-
-
- 35
-
-
-
- titleLabel
-
-
-
- 32
-
-
-
- fromFolderInput
-
-
-
- 46
-
-
-
- dataSource
-
-
-
- 37
-
-
-
- delegate
-
-
-
- 38
-
-
-
- delegate
-
-
-
- 36
-
-
-
- doMoveButton
-
-
-
- 33
-
-
-
- doCancelButton
-
-
-
- 34
-
-
-
- delegate
-
-
-
- 45
-
-
-
-
-
- 0
-
-
-
-
-
- -1
-
-
- File's Owner
-
-
- -2
-
-
-
-
- 4
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 8
-
-
-
-
- 9
-
-
-
-
- 13
-
-
-
-
- 14
-
-
-
-
-
-
-
- 15
-
-
-
-
- 16
-
-
-
-
- 17
-
-
-
-
-
-
-
-
- 18
-
-
-
-
- 19
-
-
-
-
- 31
-
-
-
-
-
- 41
-
-
-
-
- 42
-
-
-
-
- 43
-
-
-
-
- 44
-
-
-
-
-
-
- MoveSiteViewController
- com.apple.InterfaceBuilder.IBCocoaTouchPlugin
- UIResponder
- com.apple.InterfaceBuilder.IBCocoaTouchPlugin
- com.apple.InterfaceBuilder.IBCocoaTouchPlugin
- com.apple.InterfaceBuilder.IBCocoaTouchPlugin
- com.apple.InterfaceBuilder.IBCocoaTouchPlugin
- com.apple.InterfaceBuilder.IBCocoaTouchPlugin
- com.apple.InterfaceBuilder.IBCocoaTouchPlugin
- com.apple.InterfaceBuilder.IBCocoaTouchPlugin
- com.apple.InterfaceBuilder.IBCocoaTouchPlugin
- com.apple.InterfaceBuilder.IBCocoaTouchPlugin
- com.apple.InterfaceBuilder.IBCocoaTouchPlugin
- com.apple.InterfaceBuilder.IBCocoaTouchPlugin
- com.apple.InterfaceBuilder.IBCocoaTouchPlugin
- com.apple.InterfaceBuilder.IBCocoaTouchPlugin
- FolderTextField
- com.apple.InterfaceBuilder.IBCocoaTouchPlugin
- com.apple.InterfaceBuilder.IBCocoaTouchPlugin
- com.apple.InterfaceBuilder.IBCocoaTouchPlugin
-
-
-
-
-
- 46
-
-
-
-
- ActivityModule
- UIView
-
- IBProjectSource
- ./Classes/ActivityModule.h
-
-
-
- AddSiteViewController
- UIViewController
-
- id
- id
- id
- id
- id
-
-
-
- addSite
- id
-
-
- checkSiteAddress
- id
-
-
- doAddButton
- id
-
-
- doCancelButton
- id
-
-
- toggleAddFolder:
- id
-
-
-
- UIActivityIndicatorView
- UIBarButtonItem
- UIButton
- UITextField
- UILabel
- NewsBlurAppDelegate
- UIBarButtonItem
- UILabel
- UIPickerView
- UITextField
- UINavigationBar
- UIActivityIndicatorView
- UITextField
- UIScrollView
- UITableView
-
-
-
- activityIndicator
- UIActivityIndicatorView
-
-
- addButton
- UIBarButtonItem
-
-
- addFolderButton
- UIButton
-
-
- addFolderInput
- UITextField
-
-
- addingLabel
- UILabel
-
-
- appDelegate
- NewsBlurAppDelegate
-
-
- cancelButton
- UIBarButtonItem
-
-
- errorLabel
- UILabel
-
-
- folderPicker
- UIPickerView
-
-
- inFolderInput
- UITextField
-
-
- navBar
- UINavigationBar
-
-
- siteActivityIndicator
- UIActivityIndicatorView
-
-
- siteAddressInput
- UITextField
-
-
- siteScrollView
- UIScrollView
-
-
- siteTable
- UITableView
-
-
-
- IBProjectSource
- ./Classes/AddSiteViewController.h
-
-
-
- BaseViewController
- UIViewController
-
- IBProjectSource
- ./Classes/BaseViewController.h
-
-
-
- DashboardViewController
- UIViewController
-
- id
- id
-
-
-
- doLogout:
- id
-
-
- tapSegmentedButton:
- id
-
-
-
- ActivityModule
- NewsBlurAppDelegate
- UIWebView
- InteractionsModule
- UISegmentedControl
- UIToolbar
- UIToolbar
-
-
-
- activitiesModule
- ActivityModule
-
-
- appDelegate
- NewsBlurAppDelegate
-
-
- feedbackWebView
- UIWebView
-
-
- interactionsModule
- InteractionsModule
-
-
- segmentedButton
- UISegmentedControl
-
-
- toolbar
- UIToolbar
-
-
- topToolbar
- UIToolbar
-
-
-
- IBProjectSource
- ./Classes/DashboardViewController.h
-
-
-
- FeedDetailMenuViewController
- UIViewController
-
- id
- id
-
-
-
- changeOrder:
- id
-
-
- changeReadFilter:
- id
-
-
-
- NewsBlurAppDelegate
- UITableView
- UISegmentedControl
- UISegmentedControl
-
-
-
- appDelegate
- NewsBlurAppDelegate
-
-
- menuTableView
- UITableView
-
-
- orderSegmentedControl
- UISegmentedControl
-
-
- readFilterSegmentedControl
- UISegmentedControl
-
-
-
- IBProjectSource
- ./Classes/FeedDetailMenuViewController.h
-
-
-
- FeedDetailViewController
- BaseViewController
-
- id
- id
-
-
-
- doOpenMarkReadActionSheet:
- id
-
-
- doOpenSettingsActionSheet:
- id
-
-
-
- NewsBlurAppDelegate
- UIBarButtonItem
- TransparentToolbar
- UIBarButtonItem
- UIBarButtonItem
- UIBarButtonItem
- UIBarButtonItem
- UIBarButtonItem
- UITableView
- UIBarButtonItem
-
-
-
- appDelegate
- NewsBlurAppDelegate
-
-
- feedMarkReadButton
- UIBarButtonItem
-
-
- rightToolbar
- TransparentToolbar
-
-
- separatorBarButton
- UIBarButtonItem
-
-
- settingsBarButton
- UIBarButtonItem
-
-
- spacer2BarButton
- UIBarButtonItem
-
-
- spacer3BarButton
- UIBarButtonItem
-
-
- spacerBarButton
- UIBarButtonItem
-
-
- storyTitlesTable
- UITableView
-
-
- titleImageBarButton
- UIBarButtonItem
-
-
-
- IBProjectSource
- ./Classes/FeedDetailViewController.h
-
-
-
- FeedsMenuViewController
- UIViewController
-
- NewsBlurAppDelegate
- UIAlertView
- UITableView
-
-
-
- appDelegate
- NewsBlurAppDelegate
-
-
- loginAsAlert
- UIAlertView
-
-
- menuTableView
- UITableView
-
-
-
- IBProjectSource
- ./Classes/FeedsMenuViewController.h
-
-
-
- FirstTimeUserAddFriendsViewController
- UIViewController
-
- id
- id
- id
- id
-
-
-
- tapFacebookButton
- id
-
-
- tapNextButton
- id
-
-
- tapTwitterButton
- id
-
-
- toggleAutoFollowFriends:
- id
-
-
-
- NewsBlurAppDelegate
- UIActivityIndicatorView
- UIButton
- UILabel
- UIBarButtonItem
- UIActivityIndicatorView
- UIButton
-
-
-
- appDelegate
- NewsBlurAppDelegate
-
-
- facebookActivityIndicator
- UIActivityIndicatorView
-
-
- facebookButton
- UIButton
-
-
- friendsLabel
- UILabel
-
-
- nextButton
- UIBarButtonItem
-
-
- twitterActivityIndicator
- UIActivityIndicatorView
-
-
- twitterButton
- UIButton
-
-
-
- IBProjectSource
- ./Classes/FirstTimeUserAddFriendsViewController.h
-
-
-
- FirstTimeUserAddNewsBlurViewController
- UIViewController
-
- id
- id
- id
-
-
-
- tapNewsBlurButton:
- id
-
-
- tapNextButton
- id
-
-
- tapPopularButton:
- id
-
-
-
- NewsBlurAppDelegate
- UILabel
- UIBarButtonItem
-
-
-
- appDelegate
- NewsBlurAppDelegate
-
-
- instructionsLabel
- UILabel
-
-
- nextButton
- UIBarButtonItem
-
-
-
- IBProjectSource
- ./Classes/FirstTimeUserAddNewsBlurViewController.h
-
-
-
- FirstTimeUserAddSitesViewController
- UIViewController
-
- tapNextButton
- id
-
-
- tapNextButton
-
- tapNextButton
- id
-
-
-
- UIActivityIndicatorView
- NewsBlurAppDelegate
- UITableView
- UIButton
- UIView
- UILabel
- UIBarButtonItem
- UIScrollView
-
-
-
- activityIndicator
- UIActivityIndicatorView
-
-
- appDelegate
- NewsBlurAppDelegate
-
-
- categoriesTable
- UITableView
-
-
- googleReaderButton
- UIButton
-
-
- googleReaderButtonWrapper
- UIView
-
-
- instructionLabel
- UILabel
-
-
- nextButton
- UIBarButtonItem
-
-
- scrollView
- UIScrollView
-
-
-
- IBProjectSource
- ./Classes/FirstTimeUserAddSitesViewController.h
-
-
-
- FirstTimeUserViewController
- UIViewController
-
- tapNextButton
- id
-
-
- tapNextButton
-
- tapNextButton
- id
-
-
-
- NewsBlurAppDelegate
- UILabel
- UILabel
- UIImageView
- UIBarButtonItem
-
-
-
- appDelegate
- NewsBlurAppDelegate
-
-
- footer
- UILabel
-
-
- header
- UILabel
-
-
- logo
- UIImageView
-
-
- nextButton
- UIBarButtonItem
-
-
-
- IBProjectSource
- ./Classes/FirstTimeUserViewController.h
-
-
-
- FolderTextField
- UITextField
-
- IBProjectSource
- ./Classes/FolderTextField.h
-
-
-
- FontSettingsViewController
- UIViewController
-
- id
- id
-
-
-
- changeFontSize:
- id
-
-
- changeFontStyle:
- id
-
-
-
- NewsBlurAppDelegate
- UISegmentedControl
- UISegmentedControl
- UILabel
- UITableView
- UILabel
-
-
-
- appDelegate
- NewsBlurAppDelegate
-
-
- fontSizeSegment
- UISegmentedControl
-
-
- fontStyleSegment
- UISegmentedControl
-
-
- largeFontSizeLabel
- UILabel
-
-
- menuTableView
- UITableView
-
-
- smallFontSizeLabel
- UILabel
-
-
-
- IBProjectSource
- ./Classes/FontSettingsViewController.h
-
-
-
- FriendsListViewController
- UIViewController
-
- NewsBlurAppDelegate
- UISearchBar
- UITableView
-
-
-
- appDelegate
- NewsBlurAppDelegate
-
-
- friendSearchBar
- UISearchBar
-
-
- friendsTable
- UITableView
-
-
-
- IBProjectSource
- ./Classes/FriendsListViewController.h
-
-
-
- IASKAppSettingsViewController
- UITableViewController
-
- delegate
- id
-
-
- delegate
-
- delegate
- id
-
-
-
- IBProjectSource
- ./Classes/IASKAppSettingsViewController.h
-
-
-
- InteractionsModule
- UIView
-
- IBProjectSource
- ./Classes/InteractionsModule.h
-
-
-
- LoginViewController
- UIViewController
-
- id
- id
- id
- id
- id
-
-
-
- selectLogin
- id
-
-
- selectLoginSignup
- id
-
-
- selectSignUp
- id
-
-
- tapLoginButton
- id
-
-
- tapSignUpButton
- id
-
-
-
- NewsBlurAppDelegate
- UITextField
- UILabel
- UILabel
- UIView
- UISegmentedControl
- UITextField
- UILabel
- UILabel
- UIButton
- UIButton
- UITextField
- UITextField
- UIView
- UITextField
- UILabel
- UILabel
-
-
-
- appDelegate
- NewsBlurAppDelegate
-
-
- emailInput
- UITextField
-
-
- emailLabel
- UILabel
-
-
- errorLabel
- UILabel
-
-
- logInView
- UIView
-
-
- loginControl
- UISegmentedControl
-
-
- passwordInput
- UITextField
-
-
- passwordLabel
- UILabel
-
-
- passwordOptionalLabel
- UILabel
-
-
- selectLoginButton
- UIButton
-
-
- selectSignUpButton
- UIButton
-
-
- signUpPasswordInput
- UITextField
-
-
- signUpUsernameInput
- UITextField
-
-
- signUpView
- UIView
-
-
- usernameInput
- UITextField
-
-
- usernameLabel
- UILabel
-
-
- usernameOrEmailLabel
- UILabel
-
-
-
- IBProjectSource
- ./Classes/LoginViewController.h
-
-
-
- MoveSiteViewController
- UIViewController
-
- id
- id
- id
- id
-
-
-
- doCancelButton
- id
-
-
- doMoveButton
- id
-
-
- moveFolder
- id
-
-
- moveSite
- id
-
-
-
- UIActivityIndicatorView
- NewsBlurAppDelegate
- UIBarButtonItem
- UILabel
- UIPickerView
- FolderTextField
- UIBarButtonItem
- UILabel
- UINavigationBar
- UILabel
- FolderTextField
-
-
-
- activityIndicator
- UIActivityIndicatorView
-
-
- appDelegate
- NewsBlurAppDelegate
-
-
- cancelButton
- UIBarButtonItem
-
-
- errorLabel
- UILabel
-
-
- folderPicker
- UIPickerView
-
-
- fromFolderInput
- FolderTextField
-
-
- moveButton
- UIBarButtonItem
-
-
- movingLabel
- UILabel
-
-
- navBar
- UINavigationBar
-
-
- titleLabel
- UILabel
-
-
- toFolderInput
- FolderTextField
-
-
-
- IBProjectSource
- ./Classes/MoveSiteViewController.h
-
-
-
- NBContainerViewController
- UIViewController
-
- appDelegate
- NewsBlurAppDelegate
-
-
- appDelegate
-
- appDelegate
- NewsBlurAppDelegate
-
-
-
- IBProjectSource
- ./Classes/NBContainerViewController.h
-
-
-
- NSLayoutConstraint
- NSObject
-
- IBProjectSource
- ./Classes/NSLayoutConstraint.h
-
-
-
- NewsBlurAppDelegate
- BaseViewController
-
- AddSiteViewController
- DashboardViewController
- FeedDashboardViewController
- FeedDetailMenuViewController
- FeedDetailViewController
- FeedsMenuViewController
- NewsBlurViewController
- FirstTimeUserAddFriendsViewController
- FirstTimeUserAddNewsBlurViewController
- FirstTimeUserAddSitesViewController
- FirstTimeUserViewController
- FontSettingsViewController
- FriendsListViewController
- UINavigationController
- LoginViewController
- NBContainerViewController
- MoveSiteViewController
- UINavigationController
- OriginalStoryViewController
- IASKAppSettingsViewController
- ShareViewController
- StoryDetailViewController
- StoryPageControl
- TrainerViewController
- UserProfileViewController
- UIWindow
-
-
-
- addSiteViewController
- AddSiteViewController
-
-
- dashboardViewController
- DashboardViewController
-
-
- feedDashboardViewController
- FeedDashboardViewController
-
-
- feedDetailMenuViewController
- FeedDetailMenuViewController
-
-
- feedDetailViewController
- FeedDetailViewController
-
-
- feedsMenuViewController
- FeedsMenuViewController
-
-
- feedsViewController
- NewsBlurViewController
-
-
- firstTimeUserAddFriendsViewController
- FirstTimeUserAddFriendsViewController
-
-
- firstTimeUserAddNewsBlurViewController
- FirstTimeUserAddNewsBlurViewController
-
-
- firstTimeUserAddSitesViewController
- FirstTimeUserAddSitesViewController
-
-
- firstTimeUserViewController
- FirstTimeUserViewController
-
-
- fontSettingsViewController
- FontSettingsViewController
-
-
- friendsListViewController
- FriendsListViewController
-
-
- ftuxNavigationController
- UINavigationController
-
-
- loginViewController
- LoginViewController
-
-
- masterContainerViewController
- NBContainerViewController
-
-
- moveSiteViewController
- MoveSiteViewController
-
-
- navigationController
- UINavigationController
-
-
- originalStoryViewController
- OriginalStoryViewController
-
-
- preferencesViewController
- IASKAppSettingsViewController
-
-
- shareViewController
- ShareViewController
-
-
- storyDetailViewController
- StoryDetailViewController
-
-
- storyPageControl
- StoryPageControl
-
-
- trainerViewController
- TrainerViewController
-
-
- userProfileViewController
- UserProfileViewController
-
-
- window
- UIWindow
-
-
-
- IBProjectSource
- ./Classes/NewsBlurAppDelegate.h
-
-
-
- NewsBlurViewController
- BaseViewController
-
- UIButton
- UIButton
- UIButton
- id
- id
- id
- id
-
-
-
- sectionTapped:
- UIButton
-
-
- sectionUntapped:
- UIButton
-
-
- sectionUntappedOutside:
- UIButton
-
-
- selectIntelligence
- id
-
-
- showInteractionsPopover:
- id
-
-
- showSettingsPopover:
- id
-
-
- tapAddSite:
- id
-
-
-
- UIBarButtonItem
- UIBarButtonItem
- NewsBlurAppDelegate
- UISlider
- UITableView
- UIToolbar
- UIBarButtonItem
- UIView
- UISegmentedControl
- UIView
- UIBarButtonItem
- UIBarButtonItem
-
-
-
- activitiesButton
- UIBarButtonItem
-
-
- addBarButton
- UIBarButtonItem
-
-
- appDelegate
- NewsBlurAppDelegate
-
-
- feedScoreSlider
- UISlider
-
-
- feedTitlesTable
- UITableView
-
-
- feedViewToolbar
- UIToolbar
-
-
- homeButton
- UIBarButtonItem
-
-
- innerView
- UIView
-
-
- intelligenceControl
- UISegmentedControl
-
-
- noFocusMessage
- UIView
-
-
- settingsBarButton
- UIBarButtonItem
-
-
- toolbarLeftMargin
- UIBarButtonItem
-
-
-
- IBProjectSource
- ./Classes/NewsBlurViewController.h
-
-
-
- OriginalStoryViewController
- BaseViewController
-
- id
- id
- id
- id
- id
- id
-
-
-
- doCloseOriginalStoryViewController
- id
-
-
- doOpenActionSheet:
- id
-
-
- loadAddress:
- id
-
-
- webViewGoBack:
- id
-
-
- webViewGoForward:
- id
-
-
- webViewRefresh:
- id
-
-
-
- NewsBlurAppDelegate
- UIBarButtonItem
- UIBarButtonItem
- UIBarButtonItem
- UIBarButtonItem
- UILabel
- UITextField
- UIBarButtonItem
- UIToolbar
- UIWebView
-
-
-
- appDelegate
- NewsBlurAppDelegate
-
-
- back
- UIBarButtonItem
-
-
- closeButton
- UIBarButtonItem
-
-
- forward
- UIBarButtonItem
-
-
- pageAction
- UIBarButtonItem
-
-
- pageTitle
- UILabel
-
-
- pageUrl
- UITextField
-
-
- refresh
- UIBarButtonItem
-
-
- toolbar
- UIToolbar
-
-
- webView
- UIWebView
-
-
-
- IBProjectSource
- ./Classes/OriginalStoryViewController.h
-
-
-
- ShareViewController
- BaseViewController
-
- id
- id
- id
- id
-
-
-
- doCancelButton:
- id
-
-
- doReplyToComment:
- id
-
-
- doShareThisStory:
- id
-
-
- doToggleButton:
- id
-
-
-
- NewsBlurAppDelegate
- UIButton
- UITextView
- UIButton
- NSLayoutConstraint
- UILabel
- UIBarButtonItem
- UIButton
-
-
-
- appDelegate
- NewsBlurAppDelegate
-
-
- appdotnetButton
- UIButton
-
-
- commentField
- UITextView
-
-
- facebookButton
- UIButton
-
-
- keyboardHeight
- NSLayoutConstraint
-
-
- storyTitle
- UILabel
-
-
- submitButton
- UIBarButtonItem
-
-
- twitterButton
- UIButton
-
-
-
- IBProjectSource
- ./Classes/ShareViewController.h
-
-
-
- StoryDetailViewController
- BaseViewController
-
- NewsBlurAppDelegate
- UIView
- UIView
- UILabel
- UIWebView
-
-
-
- appDelegate
- NewsBlurAppDelegate
-
-
- feedTitleGradient
- UIView
-
-
- innerView
- UIView
-
-
- noStorySelectedLabel
- UILabel
-
-
- webView
- UIWebView
-
-
-
- IBProjectSource
- ./Classes/StoryDetailViewController.h
-
-
-
- StoryPageControl
- BaseViewController
-
- id
- id
- id
- id
- id
- id
- id
-
-
-
- doNextUnreadStory
- id
-
-
- doPreviousStory
- id
-
-
- openSendToDialog:
- id
-
-
- showOriginalSubview:
- id
-
-
- tapProgressBar:
- id
-
-
- toggleFontSize:
- id
-
-
- toggleView:
- id
-
-
-
- NewsBlurAppDelegate
- UIToolbar
- UIBarButtonItem
- UIButton
- UIButton
- UIButton
- UIButton
- THCircularProgressView
- UIBarButtonItem
- UIActivityIndicatorView
- UIBarButtonItem
- UIPageControl
- UIView
- UIView
- TransparentToolbar
- UIScrollView
- UIBarButtonItem
- UIBarButtonItem
- UIBarButtonItem
- UIBarButtonItem
- UIBarButtonItem
- UIView
-
-
-
- appDelegate
- NewsBlurAppDelegate
-
-
- bottomPlaceholderToolbar
- UIToolbar
-
-
- buttonAction
- UIBarButtonItem
-
-
- buttonNext
- UIButton
-
-
- buttonPrevious
- UIButton
-
-
- buttonSend
- UIButton
-
-
- buttonText
- UIButton
-
-
- circularProgressView
- THCircularProgressView
-
-
- fontSettingsButton
- UIBarButtonItem
-
-
- loadingIndicator
- UIActivityIndicatorView
-
-
- originalStoryButton
- UIBarButtonItem
-
-
- pageControl
- UIPageControl
-
-
- progressView
- UIView
-
-
- progressViewContainer
- UIView
-
-
- rightToolbar
- TransparentToolbar
-
-
- scrollView
- UIScrollView
-
-
- separatorBarButton
- UIBarButtonItem
-
-
- spacer2BarButton
- UIBarButtonItem
-
-
- spacer3BarButton
- UIBarButtonItem
-
-
- spacerBarButton
- UIBarButtonItem
-
-
- subscribeButton
- UIBarButtonItem
-
-
- traverseView
- UIView
-
-
-
- IBProjectSource
- ./Classes/StoryPageControl.h
-
-
-
- THCircularProgressView
- UIView
-
- IBProjectSource
- ./Classes/THCircularProgressView.h
-
-
-
- TrainerViewController
- BaseViewController
-
- doCloseDialog:
- id
-
-
- doCloseDialog:
-
- doCloseDialog:
- id
-
-
-
- NewsBlurAppDelegate
- UIBarButtonItem
- UINavigationBar
- TrainerWebView
-
-
-
- appDelegate
- NewsBlurAppDelegate
-
-
- closeButton
- UIBarButtonItem
-
-
- navBar
- UINavigationBar
-
-
- webView
- TrainerWebView
-
-
-
- IBProjectSource
- ./Classes/TrainerViewController.h
-
-
-
- TrainerWebView
- UIWebView
-
- IBProjectSource
- ./Classes/TrainerWebView.h
-
-
-
- TransparentToolbar
- UIToolbar
-
- IBProjectSource
- ./Classes/TransparentToolbar.h
-
-
-
- UserProfileViewController
- UIViewController
-
- IBProjectSource
- ./Classes/UserProfileViewController.h
-
-
-
-
- 0
- IBCocoaTouchFramework
-
- com.apple.InterfaceBuilder.CocoaTouchPlugin.iPhoneOS
-
-
- YES
- 3
- 2083
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/clients/ios/Resources-iPhone/OriginalStoryViewController.xib b/clients/ios/Resources-iPhone/OriginalStoryViewController.xib
index cec982723..aa8edb208 100644
--- a/clients/ios/Resources-iPhone/OriginalStoryViewController.xib
+++ b/clients/ios/Resources-iPhone/OriginalStoryViewController.xib
@@ -23,7 +23,7 @@
-
+
@@ -31,10 +31,9 @@
-
-
+
+
-
diff --git a/media/img/reader/default_profile_photo.png b/media/img/reader/default_profile_photo.png
index 3f9d09b35..6d13e8809 100644
Binary files a/media/img/reader/default_profile_photo.png and b/media/img/reader/default_profile_photo.png differ