mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-09-18 21:50:56 +00:00
fixing toggle and font size for iphone and adding toolbar tint
This commit is contained in:
parent
b730b8b1b7
commit
db7a4aeb2a
8 changed files with 183 additions and 1199 deletions
|
@ -31,6 +31,8 @@
|
|||
}
|
||||
|
||||
- (void)viewWillAppear:(BOOL)animated {
|
||||
self.appDelegate = (NewsBlurAppDelegate *)[[UIApplication sharedApplication] delegate];
|
||||
|
||||
NSUserDefaults *userPreferences = [NSUserDefaults standardUserDefaults];
|
||||
|
||||
if ([userPreferences stringForKey:@"fontStyle"]) {
|
||||
|
@ -88,6 +90,8 @@
|
|||
}
|
||||
|
||||
- (IBAction)changeFontSize:(id)sender {
|
||||
|
||||
NSLog(@"Calling changeFontSize");
|
||||
NSUserDefaults *userPreferences = [NSUserDefaults standardUserDefaults];
|
||||
if ([sender selectedSegmentIndex] == 0) {
|
||||
[appDelegate.storyDetailViewController changeFontSize:@"NB-extra-small"];
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -29,15 +29,17 @@
|
|||
NSDate *lastUpdate;
|
||||
NSCache *imageCache;
|
||||
|
||||
IBOutlet UITableView * feedTitlesTable;
|
||||
IBOutlet UIToolbar * feedViewToolbar;
|
||||
IBOutlet UISlider * feedScoreSlider;
|
||||
IBOutlet UIBarButtonItem * homeButton;
|
||||
IBOutlet UISegmentedControl * intelligenceControl;
|
||||
IBOutlet UIPopoverController *popoverController;
|
||||
UIView *innerView;
|
||||
UITableView * feedTitlesTable;
|
||||
UIToolbar * feedViewToolbar;
|
||||
UISlider * feedScoreSlider;
|
||||
UIBarButtonItem * homeButton;
|
||||
UISegmentedControl * intelligenceControl;
|
||||
UIPopoverController *popoverController;
|
||||
}
|
||||
|
||||
@property (nonatomic, retain) IBOutlet NewsBlurAppDelegate *appDelegate;
|
||||
@property (retain, nonatomic) IBOutlet UIView *innerView;
|
||||
@property (nonatomic, retain) IBOutlet UITableView *feedTitlesTable;
|
||||
@property (nonatomic, retain) IBOutlet UIToolbar *feedViewToolbar;
|
||||
@property (nonatomic, retain) IBOutlet UISlider * feedScoreSlider;
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
@implementation NewsBlurViewController
|
||||
|
||||
@synthesize appDelegate;
|
||||
|
||||
@synthesize innerView;
|
||||
@synthesize feedTitlesTable;
|
||||
@synthesize feedViewToolbar;
|
||||
@synthesize feedScoreSlider;
|
||||
|
@ -171,6 +171,7 @@
|
|||
}
|
||||
|
||||
- (void)viewDidUnload {
|
||||
[self setInnerView:nil];
|
||||
// Release any retained subviews of the main view.
|
||||
// e.g. self.myOutlet = nil;
|
||||
}
|
||||
|
@ -178,7 +179,7 @@
|
|||
|
||||
- (void)dealloc {
|
||||
[appDelegate release];
|
||||
|
||||
[innerView release];
|
||||
[feedTitlesTable release];
|
||||
[feedViewToolbar release];
|
||||
[feedScoreSlider release];
|
||||
|
@ -191,7 +192,6 @@
|
|||
[lastUpdate release];
|
||||
[imageCache release];
|
||||
[popoverController release];
|
||||
|
||||
[super dealloc];
|
||||
}
|
||||
|
||||
|
@ -786,8 +786,7 @@
|
|||
|
||||
- (IBAction)selectIntelligence {
|
||||
[MBProgressHUD hideHUDForView:self.feedTitlesTable animated:NO];
|
||||
MBProgressHUD *hud = [MBProgressHUD showHUDAddedTo:self.feedTitlesTable animated:YES];
|
||||
|
||||
MBProgressHUD *hud = [MBProgressHUD showHUDAddedTo:self.innerView animated:YES];
|
||||
hud.mode = MBProgressHUDModeText;
|
||||
hud.removeFromSuperViewOnHide = YES;
|
||||
|
||||
|
@ -832,7 +831,7 @@
|
|||
[self redrawUnreadCounts];
|
||||
}
|
||||
|
||||
[hud hide:YES afterDelay:0.75];
|
||||
[hud hide:YES afterDelay:0.4];
|
||||
}
|
||||
|
||||
- (void)updateFeedsWithIntelligence:(int)previousLevel newLevel:(int)newLevel {
|
||||
|
|
|
@ -145,7 +145,6 @@
|
|||
|
||||
} else {
|
||||
self.navigationItem.rightBarButtonItems = [NSArray arrayWithObjects:originalButton, fontSettingsButton, nil];
|
||||
self.navigationItem.rightBarButtonItem = self.toggleViewButton;
|
||||
}
|
||||
|
||||
[toggleButton release];
|
||||
|
@ -484,7 +483,7 @@
|
|||
footerString
|
||||
];
|
||||
|
||||
NSLog(@"\n\n\n\nhtmlString:\n\n\n%@\n\n\n", htmlString);
|
||||
// NSLog(@"\n\n\n\nhtmlString:\n\n\n%@\n\n\n", htmlString);
|
||||
NSString *path = [[NSBundle mainBundle] bundlePath];
|
||||
NSURL *baseURL = [NSURL fileURLWithPath:path];
|
||||
|
||||
|
@ -733,7 +732,7 @@ shouldStartLoadWithRequest:(NSURLRequest *)request
|
|||
NSString *responseString = [request responseString];
|
||||
NSDictionary *results = [[NSDictionary alloc]
|
||||
initWithDictionary:[responseString JSONValue]];
|
||||
NSLog(@"results in mark as read is %@", results);
|
||||
// NSLog(@"results in mark as read is %@", results);
|
||||
[results release];
|
||||
}
|
||||
|
||||
|
@ -917,6 +916,7 @@ shouldStartLoadWithRequest:(NSURLRequest *)request
|
|||
|
||||
appDelegate.fontSettingsViewController.navigationItem.rightBarButtonItem = donebutton;
|
||||
appDelegate.fontSettingsViewController.navigationItem.title = @"Style";
|
||||
navController.navigationBar.tintColor = [UIColor colorWithRed:0.16f green:0.36f blue:0.46 alpha:0.9];
|
||||
[self presentModalViewController:navController animated:YES];
|
||||
|
||||
[fontSettings release];
|
||||
|
@ -932,10 +932,11 @@ shouldStartLoadWithRequest:(NSURLRequest *)request
|
|||
- (void)changeFontSize:(NSString *)fontSize {
|
||||
NSString *jsString = [[NSString alloc] initWithFormat:@"document.getElementById('NB-font-size').setAttribute('class', '%@')",
|
||||
fontSize];
|
||||
|
||||
[self.webView stringByEvaluatingJavaScriptFromString:jsString];
|
||||
[jsString release];
|
||||
}
|
||||
|
||||
|
||||
- (void)setFontStyle:(NSString *)fontStyle {
|
||||
NSString *jsString;
|
||||
NSString *fontStyleStr;
|
||||
|
|
|
@ -13,10 +13,10 @@
|
|||
<object class="NSArray" key="IBDocument.IntegratedClassDependencies">
|
||||
<bool key="EncodedWithXMLCoder">YES</bool>
|
||||
<string>IBUIBarButtonItem</string>
|
||||
<string>IBUITableView</string>
|
||||
<string>IBUIToolbar</string>
|
||||
<string>IBUIView</string>
|
||||
<string>IBUISegmentedControl</string>
|
||||
<string>IBUIView</string>
|
||||
<string>IBUITableView</string>
|
||||
<string>IBProxyObject</string>
|
||||
</object>
|
||||
<object class="NSArray" key="IBDocument.PluginDependencies">
|
||||
|
@ -42,27 +42,47 @@
|
|||
<int key="NSvFlags">274</int>
|
||||
<object class="NSMutableArray" key="NSSubviews">
|
||||
<bool key="EncodedWithXMLCoder">YES</bool>
|
||||
<object class="IBUITableView" id="224086083">
|
||||
<object class="IBUIView" id="382799673">
|
||||
<reference key="NSNextResponder" ref="774585933"/>
|
||||
<int key="NSvFlags">274</int>
|
||||
<int key="NSvFlags">319</int>
|
||||
<object class="NSMutableArray" key="NSSubviews">
|
||||
<bool key="EncodedWithXMLCoder">YES</bool>
|
||||
<object class="IBUITableView" id="224086083">
|
||||
<reference key="NSNextResponder" ref="382799673"/>
|
||||
<int key="NSvFlags">274</int>
|
||||
<string key="NSFrameSize">{320, 960}</string>
|
||||
<reference key="NSSuperview" ref="382799673"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="895374018"/>
|
||||
<object class="NSColor" key="IBUIBackgroundColor">
|
||||
<int key="NSColorSpace">3</int>
|
||||
<bytes key="NSWhite">MQA</bytes>
|
||||
</object>
|
||||
<bool key="IBUIClipsSubviews">YES</bool>
|
||||
<string key="targetRuntimeIdentifier">IBIPadFramework</string>
|
||||
<bool key="IBUIShowsHorizontalScrollIndicator">NO</bool>
|
||||
<bool key="IBUIBouncesZoom">NO</bool>
|
||||
<int key="IBUISeparatorStyle">1</int>
|
||||
<int key="IBUISectionIndexMinimumDisplayRowCount">0</int>
|
||||
<bool key="IBUIShowsSelectionImmediatelyOnTouchBegin">YES</bool>
|
||||
<float key="IBUIRowHeight">60</float>
|
||||
<float key="IBUISectionHeaderHeight">22</float>
|
||||
<float key="IBUISectionFooterHeight">22</float>
|
||||
</object>
|
||||
</object>
|
||||
<string key="NSFrameSize">{320, 960}</string>
|
||||
<reference key="NSSuperview" ref="774585933"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="895374018"/>
|
||||
<reference key="NSNextKeyView" ref="224086083"/>
|
||||
<string key="NSReuseIdentifierKey">_NS:9</string>
|
||||
<object class="NSColor" key="IBUIBackgroundColor">
|
||||
<int key="NSColorSpace">3</int>
|
||||
<bytes key="NSWhite">MQA</bytes>
|
||||
<object class="NSColorSpace" key="NSCustomColorSpace">
|
||||
<int key="NSID">2</int>
|
||||
</object>
|
||||
</object>
|
||||
<bool key="IBUIClipsSubviews">YES</bool>
|
||||
<string key="targetRuntimeIdentifier">IBIPadFramework</string>
|
||||
<bool key="IBUIShowsHorizontalScrollIndicator">NO</bool>
|
||||
<bool key="IBUIBouncesZoom">NO</bool>
|
||||
<int key="IBUISeparatorStyle">1</int>
|
||||
<int key="IBUISectionIndexMinimumDisplayRowCount">0</int>
|
||||
<bool key="IBUIShowsSelectionImmediatelyOnTouchBegin">YES</bool>
|
||||
<float key="IBUIRowHeight">60</float>
|
||||
<float key="IBUISectionHeaderHeight">22</float>
|
||||
<float key="IBUISectionFooterHeight">22</float>
|
||||
</object>
|
||||
<object class="IBUIToolbar" id="895374018">
|
||||
<reference key="NSNextResponder" ref="774585933"/>
|
||||
|
@ -158,7 +178,7 @@
|
|||
<string key="NSFrameSize">{320, 1004}</string>
|
||||
<reference key="NSSuperview"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="224086083"/>
|
||||
<reference key="NSNextKeyView" ref="382799673"/>
|
||||
<object class="NSColor" key="IBUIBackgroundColor">
|
||||
<int key="NSColorSpace">1</int>
|
||||
<bytes key="NSRGB">MC4yMjcwMjkxMjggMC4zNjIxMzU3NzY0IDAuNDU2NTIxNzM5MQA</bytes>
|
||||
|
@ -170,14 +190,6 @@
|
|||
<object class="IBObjectContainer" key="IBDocument.Objects">
|
||||
<object class="NSMutableArray" key="connectionRecords">
|
||||
<bool key="EncodedWithXMLCoder">YES</bool>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBCocoaTouchOutletConnection" key="connection">
|
||||
<string key="label">feedViewToolbar</string>
|
||||
<reference key="source" ref="372490531"/>
|
||||
<reference key="destination" ref="895374018"/>
|
||||
</object>
|
||||
<int key="connectionID">16</int>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBCocoaTouchOutletConnection" key="connection">
|
||||
<string key="label">view</string>
|
||||
|
@ -186,6 +198,22 @@
|
|||
</object>
|
||||
<int key="connectionID">62</int>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBCocoaTouchOutletConnection" key="connection">
|
||||
<string key="label">innerView</string>
|
||||
<reference key="source" ref="372490531"/>
|
||||
<reference key="destination" ref="382799673"/>
|
||||
</object>
|
||||
<int key="connectionID">92</int>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBCocoaTouchOutletConnection" key="connection">
|
||||
<string key="label">feedViewToolbar</string>
|
||||
<reference key="source" ref="372490531"/>
|
||||
<reference key="destination" ref="895374018"/>
|
||||
</object>
|
||||
<int key="connectionID">16</int>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBCocoaTouchOutletConnection" key="connection">
|
||||
<string key="label">intelligenceControl</string>
|
||||
|
@ -262,19 +290,19 @@
|
|||
<reference key="object" ref="774585933"/>
|
||||
<object class="NSMutableArray" key="children">
|
||||
<bool key="EncodedWithXMLCoder">YES</bool>
|
||||
<reference ref="224086083"/>
|
||||
<reference ref="382799673"/>
|
||||
<reference ref="895374018"/>
|
||||
</object>
|
||||
<reference key="parent" ref="0"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">8</int>
|
||||
<reference key="object" ref="224086083"/>
|
||||
<int key="objectID">91</int>
|
||||
<reference key="object" ref="382799673"/>
|
||||
<object class="NSMutableArray" key="children">
|
||||
<bool key="EncodedWithXMLCoder">YES</bool>
|
||||
<reference ref="224086083"/>
|
||||
</object>
|
||||
<reference key="parent" ref="774585933"/>
|
||||
<string key="objectName">Table View</string>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">11</int>
|
||||
|
@ -302,11 +330,6 @@
|
|||
</object>
|
||||
<reference key="parent" ref="895374018"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">55</int>
|
||||
<reference key="object" ref="117639116"/>
|
||||
<reference key="parent" ref="537490750"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">79</int>
|
||||
<reference key="object" ref="607206668"/>
|
||||
|
@ -317,6 +340,17 @@
|
|||
<reference key="object" ref="550003902"/>
|
||||
<reference key="parent" ref="895374018"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">55</int>
|
||||
<reference key="object" ref="117639116"/>
|
||||
<reference key="parent" ref="537490750"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">8</int>
|
||||
<reference key="object" ref="224086083"/>
|
||||
<reference key="parent" ref="382799673"/>
|
||||
<string key="objectName">Table View</string>
|
||||
</object>
|
||||
</object>
|
||||
</object>
|
||||
<object class="NSMutableDictionary" key="flattenedProperties">
|
||||
|
@ -337,6 +371,7 @@
|
|||
<string>79.IBPluginDependency</string>
|
||||
<string>8.IBPluginDependency</string>
|
||||
<string>88.IBPluginDependency</string>
|
||||
<string>91.IBPluginDependency</string>
|
||||
</object>
|
||||
<object class="NSArray" key="dict.values">
|
||||
<bool key="EncodedWithXMLCoder">YES</bool>
|
||||
|
@ -357,6 +392,7 @@
|
|||
<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">
|
||||
|
@ -371,7 +407,7 @@
|
|||
<reference key="dict.values" ref="0"/>
|
||||
</object>
|
||||
<nil key="sourceID"/>
|
||||
<int key="maxID">90</int>
|
||||
<int key="maxID">92</int>
|
||||
</object>
|
||||
<object class="IBClassDescriber" key="IBDocument.Classes">
|
||||
<object class="NSMutableArray" key="referencedPartialClassDescriptions">
|
||||
|
@ -1893,8 +1929,8 @@
|
|||
<string>feedTitlesTable</string>
|
||||
<string>feedViewToolbar</string>
|
||||
<string>homeButton</string>
|
||||
<string>innerView</string>
|
||||
<string>intelligenceControl</string>
|
||||
<string>popoverController</string>
|
||||
</object>
|
||||
<object class="NSArray" key="dict.values">
|
||||
<bool key="EncodedWithXMLCoder">YES</bool>
|
||||
|
@ -1903,8 +1939,8 @@
|
|||
<string>UITableView</string>
|
||||
<string>UIToolbar</string>
|
||||
<string>UIBarButtonItem</string>
|
||||
<string>UIView</string>
|
||||
<string>UISegmentedControl</string>
|
||||
<string>UIPopoverController</string>
|
||||
</object>
|
||||
</object>
|
||||
<object class="NSMutableDictionary" key="toOneOutletInfosByName">
|
||||
|
@ -1916,8 +1952,8 @@
|
|||
<string>feedTitlesTable</string>
|
||||
<string>feedViewToolbar</string>
|
||||
<string>homeButton</string>
|
||||
<string>innerView</string>
|
||||
<string>intelligenceControl</string>
|
||||
<string>popoverController</string>
|
||||
</object>
|
||||
<object class="NSArray" key="dict.values">
|
||||
<bool key="EncodedWithXMLCoder">YES</bool>
|
||||
|
@ -1942,12 +1978,12 @@
|
|||
<string key="candidateClassName">UIBarButtonItem</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo">
|
||||
<string key="name">intelligenceControl</string>
|
||||
<string key="candidateClassName">UISegmentedControl</string>
|
||||
<string key="name">innerView</string>
|
||||
<string key="candidateClassName">UIView</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo">
|
||||
<string key="name">popoverController</string>
|
||||
<string key="candidateClassName">UIPopoverController</string>
|
||||
<string key="name">intelligenceControl</string>
|
||||
<string key="candidateClassName">UISegmentedControl</string>
|
||||
</object>
|
||||
</object>
|
||||
</object>
|
||||
|
|
|
@ -13,10 +13,10 @@
|
|||
<object class="NSArray" key="IBDocument.IntegratedClassDependencies">
|
||||
<bool key="EncodedWithXMLCoder">YES</bool>
|
||||
<string>IBUIBarButtonItem</string>
|
||||
<string>IBUITableView</string>
|
||||
<string>IBUIToolbar</string>
|
||||
<string>IBUIView</string>
|
||||
<string>IBUISegmentedControl</string>
|
||||
<string>IBUIView</string>
|
||||
<string>IBUITableView</string>
|
||||
<string>IBProxyObject</string>
|
||||
</object>
|
||||
<object class="NSArray" key="IBDocument.PluginDependencies">
|
||||
|
@ -42,27 +42,46 @@
|
|||
<int key="NSvFlags">274</int>
|
||||
<object class="NSMutableArray" key="NSSubviews">
|
||||
<bool key="EncodedWithXMLCoder">YES</bool>
|
||||
<object class="IBUITableView" id="224086083">
|
||||
<object class="IBUIView" id="684340155">
|
||||
<reference key="NSNextResponder" ref="774585933"/>
|
||||
<int key="NSvFlags">274</int>
|
||||
<int key="NSvFlags">292</int>
|
||||
<object class="NSMutableArray" key="NSSubviews">
|
||||
<bool key="EncodedWithXMLCoder">YES</bool>
|
||||
<object class="IBUITableView" id="224086083">
|
||||
<reference key="NSNextResponder" ref="684340155"/>
|
||||
<int key="NSvFlags">274</int>
|
||||
<string key="NSFrameSize">{320, 416}</string>
|
||||
<reference key="NSSuperview" ref="684340155"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="895374018"/>
|
||||
<object class="NSColor" key="IBUIBackgroundColor">
|
||||
<int key="NSColorSpace">3</int>
|
||||
<bytes key="NSWhite">MQA</bytes>
|
||||
</object>
|
||||
<bool key="IBUIClipsSubviews">YES</bool>
|
||||
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
||||
<bool key="IBUIShowsHorizontalScrollIndicator">NO</bool>
|
||||
<bool key="IBUIBouncesZoom">NO</bool>
|
||||
<int key="IBUISeparatorStyle">1</int>
|
||||
<int key="IBUISectionIndexMinimumDisplayRowCount">0</int>
|
||||
<bool key="IBUIShowsSelectionImmediatelyOnTouchBegin">YES</bool>
|
||||
<float key="IBUIRowHeight">44</float>
|
||||
<float key="IBUISectionHeaderHeight">22</float>
|
||||
<float key="IBUISectionFooterHeight">22</float>
|
||||
</object>
|
||||
</object>
|
||||
<string key="NSFrameSize">{320, 416}</string>
|
||||
<reference key="NSSuperview" ref="774585933"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="895374018"/>
|
||||
<string key="NSReuseIdentifierKey">_NS:9</string>
|
||||
<object class="NSColor" key="IBUIBackgroundColor">
|
||||
<int key="NSColorSpace">3</int>
|
||||
<bytes key="NSWhite">MQA</bytes>
|
||||
<object class="NSColorSpace" key="NSCustomColorSpace">
|
||||
<int key="NSID">2</int>
|
||||
</object>
|
||||
</object>
|
||||
<bool key="IBUIClipsSubviews">YES</bool>
|
||||
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
||||
<bool key="IBUIShowsHorizontalScrollIndicator">NO</bool>
|
||||
<bool key="IBUIBouncesZoom">NO</bool>
|
||||
<int key="IBUISeparatorStyle">1</int>
|
||||
<int key="IBUISectionIndexMinimumDisplayRowCount">0</int>
|
||||
<bool key="IBUIShowsSelectionImmediatelyOnTouchBegin">YES</bool>
|
||||
<float key="IBUIRowHeight">44</float>
|
||||
<float key="IBUISectionHeaderHeight">22</float>
|
||||
<float key="IBUISectionFooterHeight">22</float>
|
||||
</object>
|
||||
<object class="IBUIToolbar" id="895374018">
|
||||
<reference key="NSNextResponder" ref="774585933"/>
|
||||
|
@ -193,14 +212,6 @@
|
|||
</object>
|
||||
<int key="connectionID">65</int>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBCocoaTouchOutletConnection" key="connection">
|
||||
<string key="label">feedTitlesTable</string>
|
||||
<reference key="source" ref="372490531"/>
|
||||
<reference key="destination" ref="224086083"/>
|
||||
</object>
|
||||
<int key="connectionID">66</int>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBCocoaTouchOutletConnection" key="connection">
|
||||
<string key="label">homeButton</string>
|
||||
|
@ -211,11 +222,19 @@
|
|||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBCocoaTouchOutletConnection" key="connection">
|
||||
<string key="label">dataSource</string>
|
||||
<reference key="source" ref="224086083"/>
|
||||
<reference key="destination" ref="372490531"/>
|
||||
<string key="label">feedTitlesTable</string>
|
||||
<reference key="source" ref="372490531"/>
|
||||
<reference key="destination" ref="224086083"/>
|
||||
</object>
|
||||
<int key="connectionID">36</int>
|
||||
<int key="connectionID">66</int>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBCocoaTouchOutletConnection" key="connection">
|
||||
<string key="label">innerView</string>
|
||||
<reference key="source" ref="372490531"/>
|
||||
<reference key="destination" ref="684340155"/>
|
||||
</object>
|
||||
<int key="connectionID">86</int>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBCocoaTouchOutletConnection" key="connection">
|
||||
|
@ -225,6 +244,14 @@
|
|||
</object>
|
||||
<int key="connectionID">37</int>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBCocoaTouchOutletConnection" key="connection">
|
||||
<string key="label">dataSource</string>
|
||||
<reference key="source" ref="224086083"/>
|
||||
<reference key="destination" ref="372490531"/>
|
||||
</object>
|
||||
<int key="connectionID">36</int>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBCocoaTouchEventConnection" key="connection">
|
||||
<string key="label">selectIntelligence</string>
|
||||
|
@ -270,19 +297,10 @@
|
|||
<object class="NSMutableArray" key="children">
|
||||
<bool key="EncodedWithXMLCoder">YES</bool>
|
||||
<reference ref="895374018"/>
|
||||
<reference ref="224086083"/>
|
||||
<reference ref="684340155"/>
|
||||
</object>
|
||||
<reference key="parent" ref="0"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">8</int>
|
||||
<reference key="object" ref="224086083"/>
|
||||
<object class="NSMutableArray" key="children">
|
||||
<bool key="EncodedWithXMLCoder">YES</bool>
|
||||
</object>
|
||||
<reference key="parent" ref="774585933"/>
|
||||
<string key="objectName">Table View</string>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">11</int>
|
||||
<reference key="object" ref="895374018"/>
|
||||
|
@ -324,6 +342,21 @@
|
|||
<reference key="object" ref="934474311"/>
|
||||
<reference key="parent" ref="895374018"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">85</int>
|
||||
<reference key="object" ref="684340155"/>
|
||||
<object class="NSMutableArray" key="children">
|
||||
<bool key="EncodedWithXMLCoder">YES</bool>
|
||||
<reference ref="224086083"/>
|
||||
</object>
|
||||
<reference key="parent" ref="774585933"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">8</int>
|
||||
<reference key="object" ref="224086083"/>
|
||||
<reference key="parent" ref="684340155"/>
|
||||
<string key="objectName">Table View</string>
|
||||
</object>
|
||||
</object>
|
||||
</object>
|
||||
<object class="NSMutableDictionary" key="flattenedProperties">
|
||||
|
@ -342,6 +375,7 @@
|
|||
<string>79.IBPluginDependency</string>
|
||||
<string>8.IBPluginDependency</string>
|
||||
<string>82.IBPluginDependency</string>
|
||||
<string>85.IBPluginDependency</string>
|
||||
</object>
|
||||
<object class="NSArray" key="dict.values">
|
||||
<bool key="EncodedWithXMLCoder">YES</bool>
|
||||
|
@ -357,6 +391,7 @@
|
|||
<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">
|
||||
|
@ -371,7 +406,7 @@
|
|||
<reference key="dict.values" ref="0"/>
|
||||
</object>
|
||||
<nil key="sourceID"/>
|
||||
<int key="maxID">84</int>
|
||||
<int key="maxID">86</int>
|
||||
</object>
|
||||
<object class="IBClassDescriber" key="IBDocument.Classes">
|
||||
<object class="NSMutableArray" key="referencedPartialClassDescriptions">
|
||||
|
@ -1893,8 +1928,8 @@
|
|||
<string>feedTitlesTable</string>
|
||||
<string>feedViewToolbar</string>
|
||||
<string>homeButton</string>
|
||||
<string>innerView</string>
|
||||
<string>intelligenceControl</string>
|
||||
<string>popoverController</string>
|
||||
</object>
|
||||
<object class="NSArray" key="dict.values">
|
||||
<bool key="EncodedWithXMLCoder">YES</bool>
|
||||
|
@ -1903,8 +1938,8 @@
|
|||
<string>UITableView</string>
|
||||
<string>UIToolbar</string>
|
||||
<string>UIBarButtonItem</string>
|
||||
<string>UIView</string>
|
||||
<string>UISegmentedControl</string>
|
||||
<string>UIPopoverController</string>
|
||||
</object>
|
||||
</object>
|
||||
<object class="NSMutableDictionary" key="toOneOutletInfosByName">
|
||||
|
@ -1916,8 +1951,8 @@
|
|||
<string>feedTitlesTable</string>
|
||||
<string>feedViewToolbar</string>
|
||||
<string>homeButton</string>
|
||||
<string>innerView</string>
|
||||
<string>intelligenceControl</string>
|
||||
<string>popoverController</string>
|
||||
</object>
|
||||
<object class="NSArray" key="dict.values">
|
||||
<bool key="EncodedWithXMLCoder">YES</bool>
|
||||
|
@ -1942,12 +1977,12 @@
|
|||
<string key="candidateClassName">UIBarButtonItem</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo">
|
||||
<string key="name">intelligenceControl</string>
|
||||
<string key="candidateClassName">UISegmentedControl</string>
|
||||
<string key="name">innerView</string>
|
||||
<string key="candidateClassName">UIView</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo">
|
||||
<string key="name">popoverController</string>
|
||||
<string key="candidateClassName">UIPopoverController</string>
|
||||
<string key="name">intelligenceControl</string>
|
||||
<string key="candidateClassName">UISegmentedControl</string>
|
||||
</object>
|
||||
</object>
|
||||
</object>
|
||||
|
|
|
@ -19,12 +19,12 @@
|
|||
|
||||
.NB-large {
|
||||
line-height: 1.6em;
|
||||
font-size: 22px;
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
.NB-extra-large {
|
||||
line-height: 1.6em;
|
||||
font-size: 26px;
|
||||
font-size: 22px;
|
||||
}
|
||||
|
||||
.NB-san-serif {
|
||||
|
|
Loading…
Add table
Reference in a new issue