diff --git a/Classes/RootViewController.h b/Classes/RootViewController.h index 995bf0e..0e1f63e 100644 --- a/Classes/RootViewController.h +++ b/Classes/RootViewController.h @@ -14,7 +14,11 @@ Wikipedia_MobileAppDelegate *appDelegate; UIWebView *webView; - IBOutlet UISearchBar *searchBar; + UISearchBar *searchBar; + UIToolbar *toolBar; + UIBarButtonItem *backButton; + UIBarButtonItem *forwardButton; + NSString *pageTitle; UIView *shade; UITableView *tableView; @@ -29,7 +33,10 @@ @property (nonatomic, retain) Wikipedia_MobileAppDelegate *appDelegate; @property (nonatomic, retain) IBOutlet UIWebView *webView; -@property (nonatomic, retain) UISearchBar *searchBar; +@property (nonatomic, retain) IBOutlet UISearchBar *searchBar; +@property (nonatomic, retain) IBOutlet UIToolbar *toolBar; +@property (nonatomic, retain) IBOutlet UIBarButtonItem *backButton; +@property (nonatomic, retain) IBOutlet UIBarButtonItem *forwardButton; @property (nonatomic, retain) NSString *pageTitle; @property (nonatomic, retain) IBOutlet UIView *shade; @property (nonatomic, retain) IBOutlet UITableView *tableView; diff --git a/Classes/RootViewController.m b/Classes/RootViewController.m index 2e8e55b..589eb96 100644 --- a/Classes/RootViewController.m +++ b/Classes/RootViewController.m @@ -18,7 +18,7 @@ @implementation RootViewController -@synthesize webView, searchBar, searchResults; +@synthesize webView, searchBar, searchResults, toolBar, backButton, forwardButton; @synthesize appDelegate, pageTitle, shade, tableView; @synthesize managedObjectContext; @@ -47,6 +47,9 @@ - (void)viewDidLoad { searchBar.showsScopeBar = NO; searchBar.frame = CGRectMake(0, 0, 320.0f, 44.0f); + backButton.enabled = NO; + forwardButton.enabled = NO; + [self loadStartPage]; self.managedObjectContext = appDelegate.managedObjectContext; @@ -118,7 +121,9 @@ - (void)handleTimer:(NSTimer *)timer } } -- (void)webView:(UIWebView *)webView didFailLoadWithError:(NSError *)error { +#pragma mark WebViewDelegate + +- (void)webView:(UIWebView *)awebView didFailLoadWithError:(NSError *)error { [timer invalidate]; if (error != nil) { NSString *errorString = [NSString stringWithFormat:@"%@", error]; @@ -133,9 +138,12 @@ - (void)webView:(UIWebView *)webView didFailLoadWithError:(NSError *)error { [UIApplication sharedApplication].networkActivityIndicatorVisible = NO; [HUD hide:YES]; } + + self.backButton.enabled = awebView.canGoBack; + self.forwardButton.enabled = awebView.canGoForward; } -- (void)webViewDidFinishLoad:(UIWebView *)webView { +- (void)webViewDidFinishLoad:(UIWebView *)awebView { [UIApplication sharedApplication].networkActivityIndicatorVisible = NO; pageTitle = [self.webView stringByEvaluatingJavaScriptFromString:@"document.title"]; @@ -151,6 +159,9 @@ - (void)webViewDidFinishLoad:(UIWebView *)webView { if (![pageTitle isEqualToString:@"Wikipedia"] && ![pageTitle isEqualToString:nil]) { [self addRecentPage:pageTitle]; } + + self.backButton.enabled = awebView.canGoBack; + self.forwardButton.enabled = awebView.canGoForward; } - (void)addRecentPage:(NSString *)pageName { diff --git a/Classes/WikiViewController.h b/Classes/WikiViewController.h index 990f804..7c3e907 100644 --- a/Classes/WikiViewController.h +++ b/Classes/WikiViewController.h @@ -16,6 +16,9 @@ NSString *wikiEntryURL; UIWebView *webView; + UIToolbar *toolbar; + UIBarButtonItem *backButton; + UIBarButtonItem *forwardButton; MapViewController *superView; NSString *pageTitle; MBProgressHUD *HUD; @@ -27,6 +30,9 @@ @property (nonatomic, retain) NSString *wikiEntryURL; @property (nonatomic, retain) NSString *pageTitle; +@property (nonatomic, retain) IBOutlet UIToolbar *toolbar; +@property (nonatomic, retain) IBOutlet UIBarButtonItem *backButton; +@property (nonatomic, retain) IBOutlet UIBarButtonItem *forwardButton; @property (nonatomic, retain) IBOutlet UIWebView *webView; @property (nonatomic, retain) MapViewController *superView; diff --git a/Classes/WikiViewController.m b/Classes/WikiViewController.m index 460a11b..c8a88ed 100644 --- a/Classes/WikiViewController.m +++ b/Classes/WikiViewController.m @@ -13,7 +13,7 @@ @implementation WikiViewController -@synthesize appDelegate, wikiEntryURL, webView, superView; +@synthesize appDelegate, wikiEntryURL, webView, superView, toolbar, backButton, forwardButton; @synthesize pageTitle; @synthesize managedObjectContext; @@ -39,9 +39,11 @@ - (void)viewDidLoad { self.managedObjectContext = appDelegate.managedObjectContext; [webView setBackgroundColor:[UIColor colorWithPatternImage:[UIImage imageWithContentsOfFile:@"UITexture2.png"]]]; + backButton.enabled = NO; + forwardButton.enabled = NO; NSMutableURLRequest *URLrequest = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:wikiEntryURL]]; - [URLrequest setValue:@"Wikipedia Mobile/2.0" forHTTPHeaderField:@"User_Agent"]; + [URLrequest setValue:@"Wikipedia Mobile/2.0" forHTTPHeaderField:@"User-Agent"]; [webView loadRequest:URLrequest]; } @@ -52,7 +54,7 @@ - (void)webViewDidStartLoad:(UIWebView *)webView { [self showLoadingHUD]; } -- (void)webView:(UIWebView *)webView didFailLoadWithError:(NSError *)error { +- (void)webView:(UIWebView *)awebView didFailLoadWithError:(NSError *)error { if (error != nil) { NSString *errorString = [NSString stringWithFormat:@"%@", error]; NSLog(@"%@", errorString); @@ -60,9 +62,12 @@ - (void)webView:(UIWebView *)webView didFailLoadWithError:(NSError *)error { [UIApplication sharedApplication].networkActivityIndicatorVisible = NO; [HUD hide:YES]; } + + self.backButton.enabled = awebView.canGoBack; + self.forwardButton.enabled = awebView.canGoForward; } -- (void)webViewDidFinishLoad:(UIWebView *)webView { +- (void)webViewDidFinishLoad:(UIWebView *)awebView { [UIApplication sharedApplication].networkActivityIndicatorVisible = NO; pageTitle = [self.webView stringByEvaluatingJavaScriptFromString:@"document.title"]; @@ -72,6 +77,9 @@ - (void)webViewDidFinishLoad:(UIWebView *)webView { if (![pageTitle isEqualToString:@"Wikipedia"] && ![pageTitle isEqualToString:nil]) { [self addRecentPage:pageTitle]; } + + self.backButton.enabled = awebView.canGoBack; + self.forwardButton.enabled = awebView.canGoForward; } diff --git a/Dutch.lproj/RootViewController.xib b/Dutch.lproj/RootViewController.xib index df23cb9..793f8b0 100644 --- a/Dutch.lproj/RootViewController.xib +++ b/Dutch.lproj/RootViewController.xib @@ -1,616 +1,998 @@ - - 784 - 10F569 - 1179 - 1038.29 - - YES - com.apple.InterfaceBuilder.IBCocoaTouchPlugin - - - YES - - YES - - - YES - - - - YES - - IBFilesOwner - IBCocoaTouchFramework - - - IBFirstResponder - IBCocoaTouchFramework - - - - 292 - - YES - - - 274 - {{0, 44}, {320, 372}} - - - - - 1 - MSAxIDEAA - - YES - YES - IBCocoaTouchFramework - 3 - YES - - - - 266 - {{0, 416}, {320, 44}} - - - - - 2 - MC42ODIzNTI5NjAxIDAuNjk4MDM5MjMzNyAwLjc0NTA5ODA1NDQAA - - NO - NO - IBCocoaTouchFramework - - YES - - - NSImage - UIButtonBarArrowLeft.png - - IBCocoaTouchFramework - - - - IBCocoaTouchFramework - - 5 - - - - NSImage - UIButtonBarArrowRight.png - - IBCocoaTouchFramework - - - - IBCocoaTouchFramework - - 5 - - - IBCocoaTouchFramework - - 4 - - - IBCocoaTouchFramework - - 5 - - - - NSImage - history.png - - IBCocoaTouchFramework - - - - IBCocoaTouchFramework - - 5 - - - - NSImage - location.png - - IBCocoaTouchFramework - - - - - - - -2147483356 - - YES - - - 292 - {318, 370} - - - - NO - IBCocoaTouchFramework - 0 - 0 - - Helvetica-Bold - 15 - 16 - - - 3 - MQA - - - 1 - MC4xOTYwNzg0MzQ2IDAuMzA5ODAzOTMyOSAwLjUyMTU2ODY1NgA - - - 3 - MC41AA - - - - {{0, 44}, {320, 416}} - - - - - 1 - MCAwIDAAA - - IBCocoaTouchFramework - - - - -2147483374 - {{0, 88}, {320, 372}} - - - - - YES - IBCocoaTouchFramework - NO - 1 - 0 - YES - 44 - 22 - 22 - - - - 290 - {320, 88} - - - - - 2 - MC42ODIzNTI5NjAxIDAuNjk4MDM5MjMzNyAwLjc0NTA5ODA1NDQAA - - NO - 3 - YES - IBCocoaTouchFramework - - - Zoek - YES - - 1 - IBCocoaTouchFramework - - - YES - Engels - Kies taal - - YES - - - {320, 460} - - - - - NO - IBCocoaTouchFramework - - - - - YES - - - view - - - - 7 - - - - webView - - - - 21 - - - - searchBar - - - - 24 - - - - delegate - - - - 25 - - - - delegate - - - - 26 - - - - addBookmark - - - - 37 - - - - goBack - - - - 44 - - - - nearbyButton - - - - 46 - - - - showHistory - - - - 49 - - - - shade - - - - 71 - - - - goForward - - - - 76 - - - - stopEditing - - - 1 - - 78 - - - - tableView - - - - 83 - - - - delegate - - - - 84 - - - - dataSource - - - - 85 - - - - - YES - - 0 - - - - - - -1 - - - File's Owner - - - -2 - - - - - 6 - - - YES - - - - - - - - - - 8 - - - - - 18 - - - - - 19 - - - YES - - - - - - - - - - - - - - 33 - - - - - 36 - - - - - 39 - - - - - 47 - - - - - 52 - - - - - 60 - - - YES - - - - - - 72 - - - - - 73 - - - - - 74 - - - - - 75 - - - - - 77 - - - - - 82 - - - YES - - - - - - - YES - - YES - -1.CustomClassName - -2.CustomClassName - 18.IBPluginDependency - 19.IBPluginDependency - 33.IBPluginDependency - 36.IBPluginDependency - 39.IBPluginDependency - 47.IBPluginDependency - 52.IBPluginDependency - 6.IBEditorWindowLastContentRect - 6.IBPluginDependency - 60.IBPluginDependency - 72.IBPluginDependency - 73.IBPluginDependency - 74.IBPluginDependency - 75.IBPluginDependency - 77.IBPluginDependency - 8.IBPluginDependency - 82.IBPluginDependency - - - YES - RootViewController - 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 - {{474, 369}, {320, 460}} - 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 - - - - - YES - - - YES - - - - 91 - - - - YES - - RootViewController - UIViewController - - YES - - YES - addBookmark - goBack - goForward - nearbyButton - showHistory - stopEditing - - - YES - id - id - id - id - id - id - - - - YES - - YES - searchBar - shade - tableView - webView - - - YES - UISearchBar - UIView - UITableView - UIWebView - - - - IBProjectSource - ./classes-xjh84/RootViewController.h - - - - - 0 - IBCocoaTouchFramework - - com.apple.InterfaceBuilder.CocoaTouchPlugin.iPhoneOS - - - - com.apple.InterfaceBuilder.CocoaTouchPlugin.InterfaceBuilder3 - - - YES - Wikipedia Mobile.xcodeproj - 3 - 106 - + + 1056 + 11A511 + 823 + 1138 + 566.00 + + com.apple.InterfaceBuilder.IBCocoaTouchPlugin + 132 + + + YES + + + + YES + com.apple.InterfaceBuilder.IBCocoaTouchPlugin + + + YES + + YES + + + YES + + + + YES + + IBFilesOwner + IBCocoaTouchFramework + + + IBFirstResponder + IBCocoaTouchFramework + + + + 292 + + YES + + + 274 + {{0, 44}, {320, 372}} + + + + 1 + MSAxIDEAA + + YES + YES + IBCocoaTouchFramework + 3 + YES + + + + 266 + {{0, 416}, {320, 44}} + + + 2 + MC42ODIzNTI5NjAxIDAuNjk4MDM5MjMzNyAwLjc0NTA5ODA1NDQAA + + NO + NO + IBCocoaTouchFramework + + YES + + + NSImage + UIButtonBarArrowLeft.png + + IBCocoaTouchFramework + + + + IBCocoaTouchFramework + + 5 + + + + NSImage + UIButtonBarArrowRight.png + + IBCocoaTouchFramework + + + + IBCocoaTouchFramework + + 5 + + + IBCocoaTouchFramework + + 4 + + + IBCocoaTouchFramework + + 5 + + + + NSImage + history.png + + IBCocoaTouchFramework + + + + IBCocoaTouchFramework + + 5 + + + + NSImage + location.png + + IBCocoaTouchFramework + + + + + + + -2147483356 + + YES + + + 292 + {318, 370} + + + NO + IBCocoaTouchFramework + 0 + 0 + + Helvetica-Bold + 15 + 16 + + + 3 + MQA + + + 1 + MC4xOTYwNzg0MzQ2IDAuMzA5ODAzOTMyOSAwLjUyMTU2ODY1NgA + + + 3 + MC41AA + + + + {{0, 44}, {320, 416}} + + + + 1 + MCAwIDAAA + + IBCocoaTouchFramework + + + + -2147483374 + {{0, 88}, {320, 372}} + + + + YES + IBCocoaTouchFramework + NO + 1 + 0 + YES + 44 + 22 + 22 + + + + 290 + {320, 88} + + + + 2 + MC42ODIzNTI5NjAxIDAuNjk4MDM5MjMzNyAwLjc0NTA5ODA1NDQAA + + NO + 3 + YES + IBCocoaTouchFramework + + + Zoek + YES + + 1 + IBCocoaTouchFramework + + + YES + Engels + Kies taal + + YES + + + {320, 460} + + + + NO + IBCocoaTouchFramework + + + + + YES + + + view + + + + 7 + + + + webView + + + + 21 + + + + searchBar + + + + 24 + + + + delegate + + + + 25 + + + + delegate + + + + 26 + + + + addBookmark + + + + 37 + + + + goBack + + + + 44 + + + + nearbyButton + + + + 46 + + + + showHistory + + + + 49 + + + + shade + + + + 71 + + + + goForward + + + + 76 + + + + stopEditing + + + 1 + + 78 + + + + tableView + + + + 83 + + + + delegate + + + + 84 + + + + dataSource + + + + 85 + + + + backButton + + + + 92 + + + + forwardButton + + + + 93 + + + + toolBar + + + + 94 + + + + + YES + + 0 + + + + + + -1 + + + File's Owner + + + -2 + + + + + 6 + + + YES + + + + + + + + + + 8 + + + + + 18 + + + + + 19 + + + YES + + + + + + + + + + + + + + 33 + + + + + 36 + + + + + 39 + + + + + 47 + + + + + 52 + + + + + 60 + + + YES + + + + + + 72 + + + + + 73 + + + + + 74 + + + + + 75 + + + + + 77 + + + + + 82 + + + YES + + + + + + + YES + + YES + -1.CustomClassName + -2.CustomClassName + 18.IBPluginDependency + 19.IBPluginDependency + 33.IBPluginDependency + 36.IBPluginDependency + 39.IBPluginDependency + 47.IBPluginDependency + 52.IBPluginDependency + 6.IBEditorWindowLastContentRect + 6.IBPluginDependency + 60.IBPluginDependency + 72.IBPluginDependency + 73.IBPluginDependency + 74.IBPluginDependency + 75.IBPluginDependency + 77.IBPluginDependency + 8.IBPluginDependency + 82.IBPluginDependency + + + YES + RootViewController + 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 + {{703, 412}, {320, 460}} + 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 + + + + + YES + + + YES + + + + 94 + + + + YES + + NSObject + + IBProjectSource + JSON/NSObject+SBJSON.h + + + + NSObject + + IBProjectSource + JSON/SBJsonWriter.h + + + + RootViewController + UIViewController + + YES + + YES + addBookmark + goBack + goForward + nearbyButton + showHistory + stopEditing + + + YES + id + id + id + id + id + id + + + + YES + + YES + addBookmark + goBack + goForward + nearbyButton + showHistory + stopEditing + + + YES + + addBookmark + id + + + goBack + id + + + goForward + id + + + nearbyButton + id + + + showHistory + id + + + stopEditing + id + + + + + YES + + YES + backButton + forwardButton + searchBar + shade + tableView + toolBar + webView + + + YES + UIBarButtonItem + UIBarButtonItem + UISearchBar + UIView + UITableView + UIToolbar + UIWebView + + + + YES + + YES + backButton + forwardButton + searchBar + shade + tableView + toolBar + webView + + + YES + + backButton + UIBarButtonItem + + + forwardButton + UIBarButtonItem + + + searchBar + UISearchBar + + + shade + UIView + + + tableView + UITableView + + + toolBar + UIToolbar + + + webView + UIWebView + + + + + IBProjectSource + Classes/RootViewController.h + + + + + YES + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSError.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSFileManager.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSKeyValueCoding.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSKeyValueObserving.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSKeyedArchiver.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSObject.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSRunLoop.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSThread.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSURL.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSURLConnection.h + + + + NSObject + + IBFrameworkSource + UIKit.framework/Headers/UIAccessibility.h + + + + NSObject + + IBFrameworkSource + UIKit.framework/Headers/UINibLoading.h + + + + NSObject + + IBFrameworkSource + UIKit.framework/Headers/UIResponder.h + + + + UIBarButtonItem + UIBarItem + + IBFrameworkSource + UIKit.framework/Headers/UIBarButtonItem.h + + + + UIBarItem + NSObject + + IBFrameworkSource + UIKit.framework/Headers/UIBarItem.h + + + + UIButton + UIControl + + IBFrameworkSource + UIKit.framework/Headers/UIButton.h + + + + UIControl + UIView + + IBFrameworkSource + UIKit.framework/Headers/UIControl.h + + + + UIResponder + NSObject + + + + UIScrollView + UIView + + IBFrameworkSource + UIKit.framework/Headers/UIScrollView.h + + + + UISearchBar + UIView + + IBFrameworkSource + UIKit.framework/Headers/UISearchBar.h + + + + UISearchDisplayController + NSObject + + IBFrameworkSource + UIKit.framework/Headers/UISearchDisplayController.h + + + + UITableView + UIScrollView + + IBFrameworkSource + UIKit.framework/Headers/UITableView.h + + + + UIToolbar + UIView + + IBFrameworkSource + UIKit.framework/Headers/UIToolbar.h + + + + UIView + + IBFrameworkSource + UIKit.framework/Headers/UIPrintFormatter.h + + + + UIView + + IBFrameworkSource + UIKit.framework/Headers/UITextField.h + + + + UIView + UIResponder + + IBFrameworkSource + UIKit.framework/Headers/UIView.h + + + + UIViewController + + IBFrameworkSource + UIKit.framework/Headers/UINavigationController.h + + + + UIViewController + + IBFrameworkSource + UIKit.framework/Headers/UIPopoverController.h + + + + UIViewController + + IBFrameworkSource + UIKit.framework/Headers/UISplitViewController.h + + + + UIViewController + + IBFrameworkSource + UIKit.framework/Headers/UITabBarController.h + + + + UIViewController + UIResponder + + IBFrameworkSource + UIKit.framework/Headers/UIViewController.h + + + + UIWebView + UIView + + IBFrameworkSource + UIKit.framework/Headers/UIWebView.h + + + + + 0 + IBCocoaTouchFramework + + com.apple.InterfaceBuilder.CocoaTouchPlugin.iPhoneOS + + + + com.apple.InterfaceBuilder.CocoaTouchPlugin.InterfaceBuilder3 + + + YES + ../Wikipedia Mobile.xcodeproj + 3 + + YES + + YES + UIButtonBarArrowLeft.png + UIButtonBarArrowRight.png + history.png + location.png + + + YES + {16, 21} + {16, 21} + {18, 20} + {20, 20} + + + 132 + diff --git a/Dutch.lproj/WikiViewController.xib b/Dutch.lproj/WikiViewController.xib index d7d7b3c..46e470d 100644 --- a/Dutch.lproj/WikiViewController.xib +++ b/Dutch.lproj/WikiViewController.xib @@ -1,403 +1,671 @@ - - 1024 - 10D573 - 783 - 1038.29 - 460.00 - - com.apple.InterfaceBuilder.IBCocoaTouchPlugin - 107 - - - YES - - - - YES - com.apple.InterfaceBuilder.IBCocoaTouchPlugin - - - YES - - YES - - - YES - - - - YES - - IBFilesOwner - IBCocoaTouchFramework - - - IBFirstResponder - IBCocoaTouchFramework - - - - 274 - - YES - - - 274 - {320, 372} - - - 1 - MSAxIDEAA - - IBCocoaTouchFramework - 1 - YES - - - - 266 - {{0, 372}, {320, 44}} - - - 2 - MC42ODIzNTI5NjAxIDAuNjk4MDM5MjMzNyAwLjc0NTA5ODA1NDQAA - - NO - NO - IBCocoaTouchFramework - - YES - - - NSImage - UIButtonBarArrowLeft.png - - IBCocoaTouchFramework - - - - IBCocoaTouchFramework - - 5 - - - - NSImage - UIButtonBarArrowRight.png - - IBCocoaTouchFramework - - - - IBCocoaTouchFramework - 98 - - 6 - - - IBCocoaTouchFramework - - 5 - - - IBCocoaTouchFramework - - 4 - - - - - {320, 416} - - - 3 - MQA - - - - NO - - IBCocoaTouchFramework - - - - - YES - - - view - - - - 3 - - - - delegate - - - - 6 - - - - webView - - - - 7 - - - - goBack - - - - 18 - - - - goForward - - - - 19 - - - - addBookmark - - - - 21 - - - - - YES - - 0 - - - - - - 1 - - - YES - - - - - - - -1 - - - File's Owner - - - -2 - - - - - 5 - - - - - 8 - - - YES - - - - - - - - - - - 11 - - - - - 12 - - - - - 13 - - - - - 16 - - - - - 17 - - - - - 24 - - - - - - - YES - - YES - -1.CustomClassName - -2.CustomClassName - 1.IBEditorWindowLastContentRect - 1.IBPluginDependency - 11.IBPluginDependency - 12.IBPluginDependency - 13.IBPluginDependency - 16.IBPluginDependency - 17.IBPluginDependency - 24.IBPluginDependency - 5.IBPluginDependency - 8.IBPluginDependency - - - YES - WikiViewController - UIResponder - {{409, 83}, {320, 480}} - 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 - - - - - YES - - - YES - - - - 24 - - - - YES - - NSObject - - IBProjectSource - JSON/NSObject+SBJSON.h - - - - NSObject - - IBProjectSource - JSON/SBJsonWriter.h - - - - WikiViewController - UIViewController - - YES - - YES - addBookmark - showHistory - - - YES - id - id - - - - YES - - YES - addBookmark - showHistory - - - YES - - addBookmark - id - - - showHistory - id - - - - - webView - UIWebView - - - webView - - webView - UIWebView - - - - IBProjectSource - Classes/WikiViewController.h - - - - - 0 - IBCocoaTouchFramework - - com.apple.InterfaceBuilder.CocoaTouchPlugin.InterfaceBuilder3 - - - YES - ../Wikipedia Mobile.xcodeproj - 3 - - YES - - YES - UIButtonBarArrowLeft.png - UIButtonBarArrowRight.png - - - YES - {16, 21} - {16, 21} - - - 107 - + + 1056 + 11A511 + 823 + 1138 + 566.00 + + com.apple.InterfaceBuilder.IBCocoaTouchPlugin + 132 + + + YES + + + + YES + com.apple.InterfaceBuilder.IBCocoaTouchPlugin + + + YES + + YES + + + YES + + + + YES + + IBFilesOwner + IBCocoaTouchFramework + + + IBFirstResponder + IBCocoaTouchFramework + + + + 274 + + YES + + + 274 + {320, 372} + + + 1 + MSAxIDEAA + + IBCocoaTouchFramework + 1 + YES + + + + 266 + {{0, 372}, {320, 44}} + + + 2 + MC42ODIzNTI5NjAxIDAuNjk4MDM5MjMzNyAwLjc0NTA5ODA1NDQAA + + NO + NO + IBCocoaTouchFramework + + YES + + + NSImage + UIButtonBarArrowLeft.png + + IBCocoaTouchFramework + + + + IBCocoaTouchFramework + + 5 + + + + NSImage + UIButtonBarArrowRight.png + + IBCocoaTouchFramework + + + + IBCocoaTouchFramework + 98 + + 6 + + + IBCocoaTouchFramework + + 5 + + + IBCocoaTouchFramework + + 4 + + + + + {320, 416} + + + 3 + MQA + + + + NO + + IBCocoaTouchFramework + + + + + YES + + + view + + + + 3 + + + + delegate + + + + 6 + + + + webView + + + + 7 + + + + goBack + + + + 18 + + + + goForward + + + + 19 + + + + addBookmark + + + + 21 + + + + toolbar + + + + 25 + + + + backButton + + + + 26 + + + + forwardButton + + + + 27 + + + + + YES + + 0 + + + + + + 1 + + + YES + + + + + + + -1 + + + File's Owner + + + -2 + + + + + 5 + + + + + 8 + + + YES + + + + + + + + + + + 11 + + + + + 12 + + + + + 13 + + + + + 16 + + + + + 17 + + + + + 24 + + + + + + + YES + + YES + -1.CustomClassName + -2.CustomClassName + 1.IBEditorWindowLastContentRect + 1.IBPluginDependency + 11.IBPluginDependency + 12.IBPluginDependency + 13.IBPluginDependency + 16.IBPluginDependency + 17.IBPluginDependency + 24.IBPluginDependency + 5.IBPluginDependency + 8.IBPluginDependency + + + YES + WikiViewController + UIResponder + {{409, 83}, {320, 480}} + 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 + + + + + YES + + + YES + + + + 27 + + + + YES + + NSObject + + IBProjectSource + JSON/NSObject+SBJSON.h + + + + NSObject + + IBProjectSource + JSON/SBJsonWriter.h + + + + WikiViewController + UIViewController + + YES + + YES + addBookmark + showHistory + + + YES + id + id + + + + YES + + YES + addBookmark + showHistory + + + YES + + addBookmark + id + + + showHistory + id + + + + + YES + + YES + backButton + forwardButton + toolbar + webView + + + YES + UIBarButtonItem + UIBarButtonItem + UIToolbar + UIWebView + + + + YES + + YES + backButton + forwardButton + toolbar + webView + + + YES + + backButton + UIBarButtonItem + + + forwardButton + UIBarButtonItem + + + toolbar + UIToolbar + + + webView + UIWebView + + + + + IBProjectSource + Classes/WikiViewController.h + + + + + YES + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSError.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSFileManager.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSKeyValueCoding.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSKeyValueObserving.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSKeyedArchiver.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSObject.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSRunLoop.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSThread.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSURL.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSURLConnection.h + + + + NSObject + + IBFrameworkSource + UIKit.framework/Headers/UIAccessibility.h + + + + NSObject + + IBFrameworkSource + UIKit.framework/Headers/UINibLoading.h + + + + NSObject + + IBFrameworkSource + UIKit.framework/Headers/UIResponder.h + + + + UIBarButtonItem + UIBarItem + + IBFrameworkSource + UIKit.framework/Headers/UIBarButtonItem.h + + + + UIBarItem + NSObject + + IBFrameworkSource + UIKit.framework/Headers/UIBarItem.h + + + + UIResponder + NSObject + + + + UISearchBar + UIView + + IBFrameworkSource + UIKit.framework/Headers/UISearchBar.h + + + + UISearchDisplayController + NSObject + + IBFrameworkSource + UIKit.framework/Headers/UISearchDisplayController.h + + + + UIToolbar + UIView + + IBFrameworkSource + UIKit.framework/Headers/UIToolbar.h + + + + UIView + + IBFrameworkSource + UIKit.framework/Headers/UIPrintFormatter.h + + + + UIView + + IBFrameworkSource + UIKit.framework/Headers/UITextField.h + + + + UIView + UIResponder + + IBFrameworkSource + UIKit.framework/Headers/UIView.h + + + + UIViewController + + IBFrameworkSource + UIKit.framework/Headers/UINavigationController.h + + + + UIViewController + + IBFrameworkSource + UIKit.framework/Headers/UIPopoverController.h + + + + UIViewController + + IBFrameworkSource + UIKit.framework/Headers/UISplitViewController.h + + + + UIViewController + + IBFrameworkSource + UIKit.framework/Headers/UITabBarController.h + + + + UIViewController + UIResponder + + IBFrameworkSource + UIKit.framework/Headers/UIViewController.h + + + + UIWebView + UIView + + IBFrameworkSource + UIKit.framework/Headers/UIWebView.h + + + + + 0 + IBCocoaTouchFramework + + com.apple.InterfaceBuilder.CocoaTouchPlugin.iPhoneOS + + + + com.apple.InterfaceBuilder.CocoaTouchPlugin.InterfaceBuilder3 + + + YES + ../Wikipedia Mobile.xcodeproj + 3 + + YES + + YES + UIButtonBarArrowLeft.png + UIButtonBarArrowRight.png + + + YES + {16, 21} + {16, 21} + + + 132 + diff --git a/English.lproj/RootViewController.xib b/English.lproj/RootViewController.xib index 7c97e23..49582ed 100644 --- a/English.lproj/RootViewController.xib +++ b/English.lproj/RootViewController.xib @@ -1,615 +1,990 @@ - - 784 - 10F569 - 1179 - 1038.29 - - YES - com.apple.InterfaceBuilder.IBCocoaTouchPlugin - - - YES - - YES - - - YES - - - - YES - - IBFilesOwner - IBCocoaTouchFramework - - - IBFirstResponder - IBCocoaTouchFramework - - - - 292 - - YES - - - 274 - {{0, 44}, {320, 372}} - - - - - 1 - MSAxIDEAA - - YES - YES - IBCocoaTouchFramework - 3 - YES - - - - 266 - {{0, 416}, {320, 44}} - - - - 2 - MC42ODIzNTI5NjAxIDAuNjk4MDM5MjMzNyAwLjc0NTA5ODA1NDQAA - - NO - NO - IBCocoaTouchFramework - - YES - - - NSImage - UIButtonBarArrowLeft.png - - IBCocoaTouchFramework - - - - IBCocoaTouchFramework - - 5 - - - - NSImage - UIButtonBarArrowRight.png - - IBCocoaTouchFramework - - - - IBCocoaTouchFramework - - 5 - - - IBCocoaTouchFramework - - 4 - - - IBCocoaTouchFramework - - 5 - - - - NSImage - history.png - - IBCocoaTouchFramework - - - - IBCocoaTouchFramework - - 5 - - - - NSImage - location.png - - IBCocoaTouchFramework - - - - - - - -2147483356 - - YES - - - 292 - {318, 370} - - - - NO - IBCocoaTouchFramework - 0 - 0 - - Helvetica-Bold - 15 - 16 - - - 3 - MQA - - - 1 - MC4xOTYwNzg0MzQ2IDAuMzA5ODAzOTMyOSAwLjUyMTU2ODY1NgA - - - 3 - MC41AA - - - - {{0, 44}, {320, 416}} - - - - - 1 - MCAwIDAAA - - IBCocoaTouchFramework - - - - -2147483374 - {{0, 88}, {320, 372}} - - - - - YES - IBCocoaTouchFramework - NO - 1 - 0 - YES - 44 - 22 - 22 - - - - 290 - {320, 88} - - - - - 2 - MC42ODIzNTI5NjAxIDAuNjk4MDM5MjMzNyAwLjc0NTA5ODA1NDQAA - - NO - 3 - YES - IBCocoaTouchFramework - - - Search - YES - - 1 - IBCocoaTouchFramework - - - YES - English - Set Language - - YES - - - {320, 460} - - - - - NO - IBCocoaTouchFramework - - - - - YES - - - view - - - - 7 - - - - webView - - - - 21 - - - - searchBar - - - - 24 - - - - delegate - - - - 25 - - - - delegate - - - - 26 - - - - addBookmark - - - - 37 - - - - goBack - - - - 44 - - - - nearbyButton - - - - 46 - - - - showHistory - - - - 49 - - - - shade - - - - 71 - - - - goForward - - - - 76 - - - - stopEditing - - - 1 - - 78 - - - - tableView - - - - 83 - - - - delegate - - - - 84 - - - - dataSource - - - - 85 - - - - - YES - - 0 - - - - - - -1 - - - File's Owner - - - -2 - - - - - 6 - - - YES - - - - - - - - - - 8 - - - - - 18 - - - - - 19 - - - YES - - - - - - - - - - - - - - 33 - - - - - 36 - - - - - 39 - - - - - 47 - - - - - 52 - - - - - 60 - - - YES - - - - - - 72 - - - - - 73 - - - - - 74 - - - - - 75 - - - - - 77 - - - - - 82 - - - YES - - - - - - - YES - - YES - -1.CustomClassName - -2.CustomClassName - 18.IBPluginDependency - 19.IBPluginDependency - 33.IBPluginDependency - 36.IBPluginDependency - 39.IBPluginDependency - 47.IBPluginDependency - 52.IBPluginDependency - 6.IBEditorWindowLastContentRect - 6.IBPluginDependency - 60.IBPluginDependency - 72.IBPluginDependency - 73.IBPluginDependency - 74.IBPluginDependency - 75.IBPluginDependency - 77.IBPluginDependency - 8.IBPluginDependency - 82.IBPluginDependency - - - YES - RootViewController - 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 - {{607, 369}, {320, 460}} - 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 - - - - - YES - - - YES - - - - 91 - - - - YES - - RootViewController - UIViewController - - YES - - YES - addBookmark - goBack - goForward - nearbyButton - showHistory - stopEditing - - - YES - id - id - id - id - id - id - - - - YES - - YES - searchBar - shade - tableView - webView - - - YES - UISearchBar - UIView - UITableView - UIWebView - - - - IBProjectSource - ./classes-xjh84/RootViewController.h - - - - - 0 - IBCocoaTouchFramework - - com.apple.InterfaceBuilder.CocoaTouchPlugin.iPhoneOS - - - - com.apple.InterfaceBuilder.CocoaTouchPlugin.InterfaceBuilder3 - - - YES - Wikipedia Mobile.xcodeproj - 3 - 106 - + + 1056 + 11A511 + 823 + 1138 + 566.00 + + com.apple.InterfaceBuilder.IBCocoaTouchPlugin + 132 + + + YES + + + YES + com.apple.InterfaceBuilder.IBCocoaTouchPlugin + + + YES + + YES + + + YES + + + + YES + + IBFilesOwner + IBCocoaTouchFramework + + + IBFirstResponder + IBCocoaTouchFramework + + + + 292 + + YES + + + 274 + {{0, 44}, {320, 372}} + + + 1 + MSAxIDEAA + + YES + YES + IBCocoaTouchFramework + 3 + YES + + + + 266 + {{0, 416}, {320, 44}} + + + 2 + MC42ODIzNTI5NjAxIDAuNjk4MDM5MjMzNyAwLjc0NTA5ODA1NDQAA + + NO + NO + IBCocoaTouchFramework + + YES + + + NSImage + UIButtonBarArrowLeft.png + + IBCocoaTouchFramework + + + + IBCocoaTouchFramework + + 5 + + + + NSImage + UIButtonBarArrowRight.png + + IBCocoaTouchFramework + + + + IBCocoaTouchFramework + + 5 + + + IBCocoaTouchFramework + + 4 + + + IBCocoaTouchFramework + + 5 + + + + NSImage + history.png + + IBCocoaTouchFramework + + + + IBCocoaTouchFramework + + 5 + + + + NSImage + location.png + + IBCocoaTouchFramework + + + + + + + -2147483356 + + YES + + + 292 + {318, 370} + + NO + IBCocoaTouchFramework + 0 + 0 + + Helvetica-Bold + 15 + 16 + + + 3 + MQA + + + 1 + MC4xOTYwNzg0MzQ2IDAuMzA5ODAzOTMyOSAwLjUyMTU2ODY1NgA + + + 3 + MC41AA + + + + {{0, 44}, {320, 416}} + + + 1 + MCAwIDAAA + + IBCocoaTouchFramework + + + + -2147483374 + {{0, 88}, {320, 372}} + + + YES + IBCocoaTouchFramework + NO + 1 + 0 + YES + 44 + 22 + 22 + + + + 290 + {320, 88} + + + 2 + MC42ODIzNTI5NjAxIDAuNjk4MDM5MjMzNyAwLjc0NTA5ODA1NDQAA + + NO + 3 + YES + IBCocoaTouchFramework + + + Search + YES + + 1 + IBCocoaTouchFramework + + + YES + English + Set Language + + YES + + + {320, 460} + + NO + IBCocoaTouchFramework + + + + + YES + + + view + + + + 7 + + + + webView + + + + 21 + + + + searchBar + + + + 24 + + + + delegate + + + + 25 + + + + delegate + + + + 26 + + + + addBookmark + + + + 37 + + + + goBack + + + + 44 + + + + nearbyButton + + + + 46 + + + + showHistory + + + + 49 + + + + shade + + + + 71 + + + + goForward + + + + 76 + + + + stopEditing + + + 1 + + 78 + + + + tableView + + + + 83 + + + + delegate + + + + 84 + + + + dataSource + + + + 85 + + + + backButton + + + + 92 + + + + forwardButton + + + + 93 + + + + toolBar + + + + 94 + + + + + YES + + 0 + + + + + + -1 + + + File's Owner + + + -2 + + + + + 6 + + + YES + + + + + + + + + + 8 + + + + + 18 + + + + + 19 + + + YES + + + + + + + + + + + + + + 33 + + + + + 36 + + + + + 39 + + + + + 47 + + + + + 52 + + + + + 60 + + + YES + + + + + + 72 + + + + + 73 + + + + + 74 + + + + + 75 + + + + + 77 + + + + + 82 + + + YES + + + + + + + YES + + YES + -1.CustomClassName + -2.CustomClassName + 18.IBPluginDependency + 19.IBPluginDependency + 33.IBPluginDependency + 36.IBPluginDependency + 39.IBPluginDependency + 47.IBPluginDependency + 52.IBPluginDependency + 6.IBEditorWindowLastContentRect + 6.IBPluginDependency + 60.IBPluginDependency + 72.IBPluginDependency + 73.IBPluginDependency + 74.IBPluginDependency + 75.IBPluginDependency + 77.IBPluginDependency + 8.IBPluginDependency + 82.IBPluginDependency + + + YES + RootViewController + 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 + {{743, 391}, {320, 460}} + 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 + + + + + YES + + + YES + + + + 94 + + + + YES + + NSObject + + IBProjectSource + JSON/NSObject+SBJSON.h + + + + NSObject + + IBProjectSource + JSON/SBJsonWriter.h + + + + RootViewController + UIViewController + + YES + + YES + addBookmark + goBack + goForward + nearbyButton + showHistory + stopEditing + + + YES + id + id + id + id + id + id + + + + YES + + YES + addBookmark + goBack + goForward + nearbyButton + showHistory + stopEditing + + + YES + + addBookmark + id + + + goBack + id + + + goForward + id + + + nearbyButton + id + + + showHistory + id + + + stopEditing + id + + + + + YES + + YES + backButton + forwardButton + searchBar + shade + tableView + toolBar + webView + + + YES + UIBarButtonItem + UIBarButtonItem + UISearchBar + UIView + UITableView + UIToolbar + UIWebView + + + + YES + + YES + backButton + forwardButton + searchBar + shade + tableView + toolBar + webView + + + YES + + backButton + UIBarButtonItem + + + forwardButton + UIBarButtonItem + + + searchBar + UISearchBar + + + shade + UIView + + + tableView + UITableView + + + toolBar + UIToolbar + + + webView + UIWebView + + + + + IBProjectSource + Classes/RootViewController.h + + + + + YES + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSError.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSFileManager.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSKeyValueCoding.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSKeyValueObserving.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSKeyedArchiver.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSObject.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSRunLoop.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSThread.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSURL.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSURLConnection.h + + + + NSObject + + IBFrameworkSource + UIKit.framework/Headers/UIAccessibility.h + + + + NSObject + + IBFrameworkSource + UIKit.framework/Headers/UINibLoading.h + + + + NSObject + + IBFrameworkSource + UIKit.framework/Headers/UIResponder.h + + + + UIBarButtonItem + UIBarItem + + IBFrameworkSource + UIKit.framework/Headers/UIBarButtonItem.h + + + + UIBarItem + NSObject + + IBFrameworkSource + UIKit.framework/Headers/UIBarItem.h + + + + UIButton + UIControl + + IBFrameworkSource + UIKit.framework/Headers/UIButton.h + + + + UIControl + UIView + + IBFrameworkSource + UIKit.framework/Headers/UIControl.h + + + + UIResponder + NSObject + + + + UIScrollView + UIView + + IBFrameworkSource + UIKit.framework/Headers/UIScrollView.h + + + + UISearchBar + UIView + + IBFrameworkSource + UIKit.framework/Headers/UISearchBar.h + + + + UISearchDisplayController + NSObject + + IBFrameworkSource + UIKit.framework/Headers/UISearchDisplayController.h + + + + UITableView + UIScrollView + + IBFrameworkSource + UIKit.framework/Headers/UITableView.h + + + + UIToolbar + UIView + + IBFrameworkSource + UIKit.framework/Headers/UIToolbar.h + + + + UIView + + IBFrameworkSource + UIKit.framework/Headers/UIPrintFormatter.h + + + + UIView + + IBFrameworkSource + UIKit.framework/Headers/UITextField.h + + + + UIView + UIResponder + + IBFrameworkSource + UIKit.framework/Headers/UIView.h + + + + UIViewController + + IBFrameworkSource + UIKit.framework/Headers/UINavigationController.h + + + + UIViewController + + IBFrameworkSource + UIKit.framework/Headers/UIPopoverController.h + + + + UIViewController + + IBFrameworkSource + UIKit.framework/Headers/UISplitViewController.h + + + + UIViewController + + IBFrameworkSource + UIKit.framework/Headers/UITabBarController.h + + + + UIViewController + UIResponder + + IBFrameworkSource + UIKit.framework/Headers/UIViewController.h + + + + UIWebView + UIView + + IBFrameworkSource + UIKit.framework/Headers/UIWebView.h + + + + + 0 + IBCocoaTouchFramework + + com.apple.InterfaceBuilder.CocoaTouchPlugin.iPhoneOS + + + + com.apple.InterfaceBuilder.CocoaTouchPlugin.InterfaceBuilder3 + + + YES + ../Wikipedia Mobile.xcodeproj + 3 + + YES + + YES + UIButtonBarArrowLeft.png + UIButtonBarArrowRight.png + history.png + location.png + + + YES + {16, 21} + {16, 21} + {18, 20} + {20, 20} + + + 132 + diff --git a/English.lproj/WikiViewController.xib b/English.lproj/WikiViewController.xib index fb57eac..6dbad6b 100644 --- a/English.lproj/WikiViewController.xib +++ b/English.lproj/WikiViewController.xib @@ -1,344 +1,671 @@ - - 1024 - 10F569 - 1179 - 1038.29 - - YES - com.apple.InterfaceBuilder.IBCocoaTouchPlugin - - - YES - - YES - - - YES - - - - YES - - IBFilesOwner - IBCocoaTouchFramework - - - IBFirstResponder - IBCocoaTouchFramework - - - - 274 - - YES - - - 274 - {320, 372} - - - - 1 - MSAxIDEAA - - IBCocoaTouchFramework - 1 - YES - - - - 266 - {{0, 372}, {320, 44}} - - - - 2 - MC42ODIzNTI5NjAxIDAuNjk4MDM5MjMzNyAwLjc0NTA5ODA1NDQAA - - NO - NO - IBCocoaTouchFramework - - YES - - - NSImage - UIButtonBarArrowLeft.png - - IBCocoaTouchFramework - - - - IBCocoaTouchFramework - - 5 - - - - NSImage - UIButtonBarArrowRight.png - - IBCocoaTouchFramework - - - - IBCocoaTouchFramework - 98 - - 6 - - - IBCocoaTouchFramework - - 5 - - - IBCocoaTouchFramework - - 4 - - - - - {{0, 64}, {320, 416}} - - - - 3 - MQA - - - - NO - - IBCocoaTouchFramework - - - - - YES - - - view - - - - 3 - - - - delegate - - - - 6 - - - - webView - - - - 7 - - - - goBack - - - - 18 - - - - goForward - - - - 19 - - - - addBookmark - - - - 21 - - - - - YES - - 0 - - - - - - 1 - - - YES - - - - - - - -1 - - - File's Owner - - - -2 - - - - - 5 - - - - - 8 - - - YES - - - - - - - - - - - 11 - - - - - 12 - - - - - 13 - - - - - 16 - - - - - 17 - - - - - 24 - - - - - - - YES - - YES - -1.CustomClassName - -2.CustomClassName - 1.IBEditorWindowLastContentRect - 1.IBPluginDependency - 11.IBPluginDependency - 12.IBPluginDependency - 13.IBPluginDependency - 16.IBPluginDependency - 17.IBPluginDependency - 24.IBPluginDependency - 5.IBPluginDependency - 8.IBPluginDependency - - - YES - WikiViewController - UIResponder - {{409, 83}, {320, 480}} - 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 - - - - - YES - - - YES - - - - 24 - - - - YES - - WikiViewController - UIViewController - - YES - - YES - addBookmark - showHistory - - - YES - id - id - - - - webView - UIWebView - - - IBProjectSource - ./classes-xjh84/WikiViewController.h - - - - - 0 - IBCocoaTouchFramework - - com.apple.InterfaceBuilder.CocoaTouchPlugin.InterfaceBuilder3 - - - YES - ../Wikipedia Mobile.xcodeproj - 3 - 106 - + + 1056 + 11A511 + 823 + 1138 + 566.00 + + com.apple.InterfaceBuilder.IBCocoaTouchPlugin + 132 + + + YES + + + + YES + com.apple.InterfaceBuilder.IBCocoaTouchPlugin + + + YES + + YES + + + YES + + + + YES + + IBFilesOwner + IBCocoaTouchFramework + + + IBFirstResponder + IBCocoaTouchFramework + + + + 274 + + YES + + + 274 + {320, 372} + + + 1 + MSAxIDEAA + + IBCocoaTouchFramework + 1 + YES + + + + 266 + {{0, 372}, {320, 44}} + + + 2 + MC42ODIzNTI5NjAxIDAuNjk4MDM5MjMzNyAwLjc0NTA5ODA1NDQAA + + NO + NO + IBCocoaTouchFramework + + YES + + + NSImage + UIButtonBarArrowLeft.png + + IBCocoaTouchFramework + + + + IBCocoaTouchFramework + + 5 + + + + NSImage + UIButtonBarArrowRight.png + + IBCocoaTouchFramework + + + + IBCocoaTouchFramework + 98 + + 6 + + + IBCocoaTouchFramework + + 5 + + + IBCocoaTouchFramework + + 4 + + + + + {320, 416} + + + 3 + MQA + + + + NO + + IBCocoaTouchFramework + + + + + YES + + + view + + + + 3 + + + + delegate + + + + 6 + + + + webView + + + + 7 + + + + goBack + + + + 18 + + + + goForward + + + + 19 + + + + addBookmark + + + + 21 + + + + backButton + + + + 25 + + + + forwardButton + + + + 26 + + + + toolbar + + + + 27 + + + + + YES + + 0 + + + + + + 1 + + + YES + + + + + + + -1 + + + File's Owner + + + -2 + + + + + 5 + + + + + 8 + + + YES + + + + + + + + + + + 11 + + + + + 12 + + + + + 13 + + + + + 16 + + + + + 17 + + + + + 24 + + + + + + + YES + + YES + -1.CustomClassName + -2.CustomClassName + 1.IBEditorWindowLastContentRect + 1.IBPluginDependency + 11.IBPluginDependency + 12.IBPluginDependency + 13.IBPluginDependency + 16.IBPluginDependency + 17.IBPluginDependency + 24.IBPluginDependency + 5.IBPluginDependency + 8.IBPluginDependency + + + YES + WikiViewController + UIResponder + {{409, 83}, {320, 480}} + 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 + + + + + YES + + + YES + + + + 27 + + + + YES + + NSObject + + IBProjectSource + JSON/NSObject+SBJSON.h + + + + NSObject + + IBProjectSource + JSON/SBJsonWriter.h + + + + WikiViewController + UIViewController + + YES + + YES + addBookmark + showHistory + + + YES + id + id + + + + YES + + YES + addBookmark + showHistory + + + YES + + addBookmark + id + + + showHistory + id + + + + + YES + + YES + backButton + forwardButton + toolbar + webView + + + YES + UIBarButtonItem + UIBarButtonItem + UIToolbar + UIWebView + + + + YES + + YES + backButton + forwardButton + toolbar + webView + + + YES + + backButton + UIBarButtonItem + + + forwardButton + UIBarButtonItem + + + toolbar + UIToolbar + + + webView + UIWebView + + + + + IBProjectSource + Classes/WikiViewController.h + + + + + YES + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSError.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSFileManager.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSKeyValueCoding.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSKeyValueObserving.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSKeyedArchiver.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSObject.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSRunLoop.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSThread.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSURL.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSURLConnection.h + + + + NSObject + + IBFrameworkSource + UIKit.framework/Headers/UIAccessibility.h + + + + NSObject + + IBFrameworkSource + UIKit.framework/Headers/UINibLoading.h + + + + NSObject + + IBFrameworkSource + UIKit.framework/Headers/UIResponder.h + + + + UIBarButtonItem + UIBarItem + + IBFrameworkSource + UIKit.framework/Headers/UIBarButtonItem.h + + + + UIBarItem + NSObject + + IBFrameworkSource + UIKit.framework/Headers/UIBarItem.h + + + + UIResponder + NSObject + + + + UISearchBar + UIView + + IBFrameworkSource + UIKit.framework/Headers/UISearchBar.h + + + + UISearchDisplayController + NSObject + + IBFrameworkSource + UIKit.framework/Headers/UISearchDisplayController.h + + + + UIToolbar + UIView + + IBFrameworkSource + UIKit.framework/Headers/UIToolbar.h + + + + UIView + + IBFrameworkSource + UIKit.framework/Headers/UIPrintFormatter.h + + + + UIView + + IBFrameworkSource + UIKit.framework/Headers/UITextField.h + + + + UIView + UIResponder + + IBFrameworkSource + UIKit.framework/Headers/UIView.h + + + + UIViewController + + IBFrameworkSource + UIKit.framework/Headers/UINavigationController.h + + + + UIViewController + + IBFrameworkSource + UIKit.framework/Headers/UIPopoverController.h + + + + UIViewController + + IBFrameworkSource + UIKit.framework/Headers/UISplitViewController.h + + + + UIViewController + + IBFrameworkSource + UIKit.framework/Headers/UITabBarController.h + + + + UIViewController + UIResponder + + IBFrameworkSource + UIKit.framework/Headers/UIViewController.h + + + + UIWebView + UIView + + IBFrameworkSource + UIKit.framework/Headers/UIWebView.h + + + + + 0 + IBCocoaTouchFramework + + com.apple.InterfaceBuilder.CocoaTouchPlugin.iPhoneOS + + + + com.apple.InterfaceBuilder.CocoaTouchPlugin.InterfaceBuilder3 + + + YES + ../Wikipedia Mobile.xcodeproj + 3 + + YES + + YES + UIButtonBarArrowLeft.png + UIButtonBarArrowRight.png + + + YES + {16, 21} + {16, 21} + + + 132 + diff --git a/ja.lproj/RootViewController.xib b/ja.lproj/RootViewController.xib index cef5658..3f34a6a 100644 --- a/ja.lproj/RootViewController.xib +++ b/ja.lproj/RootViewController.xib @@ -1,953 +1,998 @@ - - 1024 - 10J869 - 851 - 1038.35 - 461.00 - - com.apple.InterfaceBuilder.IBCocoaTouchPlugin - 141 - - - YES - - - - YES - com.apple.InterfaceBuilder.IBCocoaTouchPlugin - - - YES - - YES - - - YES - - - - YES - - IBFilesOwner - IBCocoaTouchFramework - - - IBFirstResponder - IBCocoaTouchFramework - - - - 292 - - YES - - - 274 - {{0, 44}, {320, 372}} - - - - 1 - MSAxIDEAA - - YES - YES - IBCocoaTouchFramework - 3 - YES - - - - 266 - {{0, 416}, {320, 44}} - - - 2 - MC42ODIzNTI5NjAxIDAuNjk4MDM5MjMzNyAwLjc0NTA5ODA1NDQAA - - NO - NO - IBCocoaTouchFramework - - YES - - - NSImage - UIButtonBarArrowLeft.png - - IBCocoaTouchFramework - - - - IBCocoaTouchFramework - - 5 - - - - NSImage - UIButtonBarArrowRight.png - - IBCocoaTouchFramework - - - - IBCocoaTouchFramework - - 5 - - - IBCocoaTouchFramework - - 4 - - - IBCocoaTouchFramework - - 5 - - - - NSImage - history.png - - IBCocoaTouchFramework - - - - IBCocoaTouchFramework - - 5 - - - - NSImage - location.png - - IBCocoaTouchFramework - - - - - - - -2147483356 - - YES - - - 292 - {318, 370} - - - NO - IBCocoaTouchFramework - 0 - 0 - - Helvetica-Bold - 15 - 16 - - - 3 - MQA - - - 1 - MC4xOTYwNzg0MzQ2IDAuMzA5ODAzOTMyOSAwLjUyMTU2ODY1NgA - - - 3 - MC41AA - - - - {{0, 44}, {320, 416}} - - - - 1 - MCAwIDAAA - - IBCocoaTouchFramework - - - - -2147483374 - {{0, 88}, {320, 372}} - - - - YES - IBCocoaTouchFramework - NO - 1 - 0 - YES - 44 - 22 - 22 - - - - 290 - {320, 88} - - - - 2 - MC42ODIzNTI5NjAxIDAuNjk4MDM5MjMzNyAwLjc0NTA5ODA1NDQAA - - NO - 3 - YES - IBCocoaTouchFramework - - - 検索 - YES - - 1 - IBCocoaTouchFramework - - - YES - 日本語 - 言語の設定 - - YES - - - {320, 460} - - - - NO - IBCocoaTouchFramework - - - - - YES - - - view - - - - 7 - - - - webView - - - - 21 - - - - searchBar - - - - 24 - - - - delegate - - - - 25 - - - - delegate - - - - 26 - - - - addBookmark - - - - 37 - - - - goBack - - - - 44 - - - - nearbyButton - - - - 46 - - - - showHistory - - - - 49 - - - - shade - - - - 71 - - - - goForward - - - - 76 - - - - stopEditing - - - 1 - - 78 - - - - tableView - - - - 83 - - - - delegate - - - - 84 - - - - dataSource - - - - 85 - - - - - YES - - 0 - - - - - - -1 - - - File's Owner - - - -2 - - - - - 6 - - - YES - - - - - - - - - - 8 - - - - - 18 - - - - - 19 - - - YES - - - - - - - - - - - - - - 33 - - - - - 36 - - - - - 39 - - - - - 47 - - - - - 52 - - - - - 60 - - - YES - - - - - - 72 - - - - - 73 - - - - - 74 - - - - - 75 - - - - - 77 - - - - - 82 - - - YES - - - - - - - YES - - YES - -1.CustomClassName - -2.CustomClassName - 18.IBPluginDependency - 19.IBPluginDependency - 33.IBPluginDependency - 36.IBPluginDependency - 39.IBPluginDependency - 47.IBPluginDependency - 52.IBPluginDependency - 6.IBEditorWindowLastContentRect - 6.IBPluginDependency - 60.IBPluginDependency - 72.IBPluginDependency - 73.IBPluginDependency - 74.IBPluginDependency - 75.IBPluginDependency - 77.IBPluginDependency - 8.IBPluginDependency - 82.IBPluginDependency - - - YES - RootViewController - 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 - {{607, 296}, {320, 460}} - 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 - - - - - YES - - - YES - - - - 91 - - - - YES - - NSObject - - IBProjectSource - JSON/NSObject+SBJSON.h - - - - NSObject - - IBProjectSource - JSON/SBJsonWriter.h - - - - RootViewController - UIViewController - - YES - - YES - addBookmark - goBack - goForward - nearbyButton - showHistory - stopEditing - - - YES - id - id - id - id - id - id - - - - YES - - YES - addBookmark - goBack - goForward - nearbyButton - showHistory - stopEditing - - - YES - - addBookmark - id - - - goBack - id - - - goForward - id - - - nearbyButton - id - - - showHistory - id - - - stopEditing - id - - - - - YES - - YES - searchBar - shade - tableView - webView - - - YES - UISearchBar - UIView - UITableView - UIWebView - - - - YES - - YES - searchBar - shade - tableView - webView - - - YES - - searchBar - UISearchBar - - - shade - UIView - - - tableView - UITableView - - - webView - UIWebView - - - - - IBProjectSource - Classes/RootViewController.h - - - - - YES - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSError.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSFileManager.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSKeyValueCoding.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSKeyValueObserving.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSKeyedArchiver.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSObject.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSRunLoop.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSThread.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSURL.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSURLConnection.h - - - - NSObject - - IBFrameworkSource - UIKit.framework/Headers/UIAccessibility.h - - - - NSObject - - IBFrameworkSource - UIKit.framework/Headers/UINibLoading.h - - - - NSObject - - IBFrameworkSource - UIKit.framework/Headers/UIResponder.h - - - - UIBarButtonItem - UIBarItem - - IBFrameworkSource - UIKit.framework/Headers/UIBarButtonItem.h - - - - UIBarItem - NSObject - - IBFrameworkSource - UIKit.framework/Headers/UIBarItem.h - - - - UIButton - UIControl - - IBFrameworkSource - UIKit.framework/Headers/UIButton.h - - - - UIControl - UIView - - IBFrameworkSource - UIKit.framework/Headers/UIControl.h - - - - UIResponder - NSObject - - - - UIScrollView - UIView - - IBFrameworkSource - UIKit.framework/Headers/UIScrollView.h - - - - UISearchBar - UIView - - IBFrameworkSource - UIKit.framework/Headers/UISearchBar.h - - - - UISearchDisplayController - NSObject - - IBFrameworkSource - UIKit.framework/Headers/UISearchDisplayController.h - - - - UITableView - UIScrollView - - IBFrameworkSource - UIKit.framework/Headers/UITableView.h - - - - UIToolbar - UIView - - IBFrameworkSource - UIKit.framework/Headers/UIToolbar.h - - - - UIView - - IBFrameworkSource - UIKit.framework/Headers/UIPrintFormatter.h - - - - UIView - - IBFrameworkSource - UIKit.framework/Headers/UITextField.h - - - - UIView - UIResponder - - IBFrameworkSource - UIKit.framework/Headers/UIView.h - - - - UIViewController - - IBFrameworkSource - UIKit.framework/Headers/UINavigationController.h - - - - UIViewController - - IBFrameworkSource - UIKit.framework/Headers/UIPopoverController.h - - - - UIViewController - - IBFrameworkSource - UIKit.framework/Headers/UISplitViewController.h - - - - UIViewController - - IBFrameworkSource - UIKit.framework/Headers/UITabBarController.h - - - - UIViewController - UIResponder - - IBFrameworkSource - UIKit.framework/Headers/UIViewController.h - - - - UIWebView - UIView - - IBFrameworkSource - UIKit.framework/Headers/UIWebView.h - - - - - 0 - IBCocoaTouchFramework - - com.apple.InterfaceBuilder.CocoaTouchPlugin.iPhoneOS - - - - com.apple.InterfaceBuilder.CocoaTouchPlugin.InterfaceBuilder3 - - - YES - ../Wikipedia Mobile.xcodeproj - 3 - - YES - - YES - UIButtonBarArrowLeft.png - UIButtonBarArrowRight.png - history.png - location.png - - - YES - {16, 21} - {16, 21} - {18, 20} - {20, 20} - - - 141 - + + 1056 + 11A511 + 823 + 1138 + 566.00 + + com.apple.InterfaceBuilder.IBCocoaTouchPlugin + 132 + + + YES + + + + YES + com.apple.InterfaceBuilder.IBCocoaTouchPlugin + + + YES + + YES + + + YES + + + + YES + + IBFilesOwner + IBCocoaTouchFramework + + + IBFirstResponder + IBCocoaTouchFramework + + + + 292 + + YES + + + 274 + {{0, 44}, {320, 372}} + + + + 1 + MSAxIDEAA + + YES + YES + IBCocoaTouchFramework + 3 + YES + + + + 266 + {{0, 416}, {320, 44}} + + + 2 + MC42ODIzNTI5NjAxIDAuNjk4MDM5MjMzNyAwLjc0NTA5ODA1NDQAA + + NO + NO + IBCocoaTouchFramework + + YES + + + NSImage + UIButtonBarArrowLeft.png + + IBCocoaTouchFramework + + + + IBCocoaTouchFramework + + 5 + + + + NSImage + UIButtonBarArrowRight.png + + IBCocoaTouchFramework + + + + IBCocoaTouchFramework + + 5 + + + IBCocoaTouchFramework + + 4 + + + IBCocoaTouchFramework + + 5 + + + + NSImage + history.png + + IBCocoaTouchFramework + + + + IBCocoaTouchFramework + + 5 + + + + NSImage + location.png + + IBCocoaTouchFramework + + + + + + + -2147483356 + + YES + + + 292 + {318, 370} + + + NO + IBCocoaTouchFramework + 0 + 0 + + Helvetica-Bold + 15 + 16 + + + 3 + MQA + + + 1 + MC4xOTYwNzg0MzQ2IDAuMzA5ODAzOTMyOSAwLjUyMTU2ODY1NgA + + + 3 + MC41AA + + + + {{0, 44}, {320, 416}} + + + + 1 + MCAwIDAAA + + IBCocoaTouchFramework + + + + -2147483374 + {{0, 88}, {320, 372}} + + + + YES + IBCocoaTouchFramework + NO + 1 + 0 + YES + 44 + 22 + 22 + + + + 290 + {320, 88} + + + + 2 + MC42ODIzNTI5NjAxIDAuNjk4MDM5MjMzNyAwLjc0NTA5ODA1NDQAA + + NO + 3 + YES + IBCocoaTouchFramework + + + 検索 + YES + + 1 + IBCocoaTouchFramework + + + YES + 日本語 + 言語の設定 + + YES + + + {320, 460} + + + + NO + IBCocoaTouchFramework + + + + + YES + + + view + + + + 7 + + + + webView + + + + 21 + + + + searchBar + + + + 24 + + + + delegate + + + + 25 + + + + delegate + + + + 26 + + + + addBookmark + + + + 37 + + + + goBack + + + + 44 + + + + nearbyButton + + + + 46 + + + + showHistory + + + + 49 + + + + shade + + + + 71 + + + + goForward + + + + 76 + + + + stopEditing + + + 1 + + 78 + + + + tableView + + + + 83 + + + + delegate + + + + 84 + + + + dataSource + + + + 85 + + + + toolBar + + + + 92 + + + + backButton + + + + 93 + + + + forwardButton + + + + 94 + + + + + YES + + 0 + + + + + + -1 + + + File's Owner + + + -2 + + + + + 6 + + + YES + + + + + + + + + + 8 + + + + + 18 + + + + + 19 + + + YES + + + + + + + + + + + + + + 33 + + + + + 36 + + + + + 39 + + + + + 47 + + + + + 52 + + + + + 60 + + + YES + + + + + + 72 + + + + + 73 + + + + + 74 + + + + + 75 + + + + + 77 + + + + + 82 + + + YES + + + + + + + YES + + YES + -1.CustomClassName + -2.CustomClassName + 18.IBPluginDependency + 19.IBPluginDependency + 33.IBPluginDependency + 36.IBPluginDependency + 39.IBPluginDependency + 47.IBPluginDependency + 52.IBPluginDependency + 6.IBEditorWindowLastContentRect + 6.IBPluginDependency + 60.IBPluginDependency + 72.IBPluginDependency + 73.IBPluginDependency + 74.IBPluginDependency + 75.IBPluginDependency + 77.IBPluginDependency + 8.IBPluginDependency + 82.IBPluginDependency + + + YES + RootViewController + 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 + {{607, 296}, {320, 460}} + 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 + + + + + YES + + + YES + + + + 94 + + + + YES + + NSObject + + IBProjectSource + JSON/NSObject+SBJSON.h + + + + NSObject + + IBProjectSource + JSON/SBJsonWriter.h + + + + RootViewController + UIViewController + + YES + + YES + addBookmark + goBack + goForward + nearbyButton + showHistory + stopEditing + + + YES + id + id + id + id + id + id + + + + YES + + YES + addBookmark + goBack + goForward + nearbyButton + showHistory + stopEditing + + + YES + + addBookmark + id + + + goBack + id + + + goForward + id + + + nearbyButton + id + + + showHistory + id + + + stopEditing + id + + + + + YES + + YES + backButton + forwardButton + searchBar + shade + tableView + toolBar + webView + + + YES + UIBarButtonItem + UIBarButtonItem + UISearchBar + UIView + UITableView + UIToolbar + UIWebView + + + + YES + + YES + backButton + forwardButton + searchBar + shade + tableView + toolBar + webView + + + YES + + backButton + UIBarButtonItem + + + forwardButton + UIBarButtonItem + + + searchBar + UISearchBar + + + shade + UIView + + + tableView + UITableView + + + toolBar + UIToolbar + + + webView + UIWebView + + + + + IBProjectSource + Classes/RootViewController.h + + + + + YES + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSError.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSFileManager.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSKeyValueCoding.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSKeyValueObserving.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSKeyedArchiver.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSObject.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSRunLoop.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSThread.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSURL.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSURLConnection.h + + + + NSObject + + IBFrameworkSource + UIKit.framework/Headers/UIAccessibility.h + + + + NSObject + + IBFrameworkSource + UIKit.framework/Headers/UINibLoading.h + + + + NSObject + + IBFrameworkSource + UIKit.framework/Headers/UIResponder.h + + + + UIBarButtonItem + UIBarItem + + IBFrameworkSource + UIKit.framework/Headers/UIBarButtonItem.h + + + + UIBarItem + NSObject + + IBFrameworkSource + UIKit.framework/Headers/UIBarItem.h + + + + UIButton + UIControl + + IBFrameworkSource + UIKit.framework/Headers/UIButton.h + + + + UIControl + UIView + + IBFrameworkSource + UIKit.framework/Headers/UIControl.h + + + + UIResponder + NSObject + + + + UIScrollView + UIView + + IBFrameworkSource + UIKit.framework/Headers/UIScrollView.h + + + + UISearchBar + UIView + + IBFrameworkSource + UIKit.framework/Headers/UISearchBar.h + + + + UISearchDisplayController + NSObject + + IBFrameworkSource + UIKit.framework/Headers/UISearchDisplayController.h + + + + UITableView + UIScrollView + + IBFrameworkSource + UIKit.framework/Headers/UITableView.h + + + + UIToolbar + UIView + + IBFrameworkSource + UIKit.framework/Headers/UIToolbar.h + + + + UIView + + IBFrameworkSource + UIKit.framework/Headers/UIPrintFormatter.h + + + + UIView + + IBFrameworkSource + UIKit.framework/Headers/UITextField.h + + + + UIView + UIResponder + + IBFrameworkSource + UIKit.framework/Headers/UIView.h + + + + UIViewController + + IBFrameworkSource + UIKit.framework/Headers/UINavigationController.h + + + + UIViewController + + IBFrameworkSource + UIKit.framework/Headers/UIPopoverController.h + + + + UIViewController + + IBFrameworkSource + UIKit.framework/Headers/UISplitViewController.h + + + + UIViewController + + IBFrameworkSource + UIKit.framework/Headers/UITabBarController.h + + + + UIViewController + UIResponder + + IBFrameworkSource + UIKit.framework/Headers/UIViewController.h + + + + UIWebView + UIView + + IBFrameworkSource + UIKit.framework/Headers/UIWebView.h + + + + + 0 + IBCocoaTouchFramework + + com.apple.InterfaceBuilder.CocoaTouchPlugin.iPhoneOS + + + + com.apple.InterfaceBuilder.CocoaTouchPlugin.InterfaceBuilder3 + + + YES + ../Wikipedia Mobile.xcodeproj + 3 + + YES + + YES + UIButtonBarArrowLeft.png + UIButtonBarArrowRight.png + history.png + location.png + + + YES + {16, 21} + {16, 21} + {18, 20} + {20, 20} + + + 132 +