forked from spacedockapp/spacedock
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Removed unnecessary cancel button from search bar Fixed formatting for different screen sizes Added scripts to generate SQLite Data file Cleaned up Data file: removed extra Borg Octahedron entries, fixed syntax around tactical cube Added large image file to repo Added Fighter Squadron 6 preview
- Loading branch information
Robert George
authored and
Robert George
committed
Jan 1, 2015
1 parent
233e2a3
commit e68e619
Showing
19 changed files
with
1,579 additions
and
243 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
// | ||
// DockSplitViewController.h | ||
// Space Dock | ||
// | ||
// Created by Robert George on 12/31/14. | ||
// Copyright (c) 2014 Robert George. All rights reserved. | ||
// | ||
|
||
#import <UIKit/UIKit.h> | ||
|
||
@interface DockSplitViewController : UISplitViewController <UISplitViewControllerDelegate> | ||
|
||
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
// | ||
// DockSplitViewController.m | ||
// Space Dock | ||
// | ||
// Created by Robert George on 12/31/14. | ||
// Copyright (c) 2014 Robert George. All rights reserved. | ||
// | ||
|
||
#import "DockSplitViewController.h" | ||
|
||
@interface DockSplitViewController () | ||
|
||
@end | ||
|
||
@implementation DockSplitViewController | ||
|
||
- (void)viewDidLoad { | ||
[super viewDidLoad]; | ||
// Do any additional setup after loading the view. | ||
self.delegate = self; | ||
} | ||
|
||
- (void)didReceiveMemoryWarning { | ||
[super didReceiveMemoryWarning]; | ||
// Dispose of any resources that can be recreated. | ||
} | ||
|
||
#pragma mark - UISplitViewControllerDelegate | ||
|
||
- (BOOL)splitViewController:(UISplitViewController *)splitViewController | ||
collapseSecondaryViewController:(UIViewController *)secondaryViewController | ||
ontoPrimaryViewController:(UIViewController *)primaryViewController | ||
{ | ||
return YES; | ||
} | ||
|
||
- (BOOL)splitViewController:(UISplitViewController *)svc | ||
shouldHideViewController:(UIViewController *)vc | ||
inOrientation:(UIInterfaceOrientation)orientation | ||
{ | ||
return NO; | ||
} | ||
/* | ||
#pragma mark - Navigation | ||
// In a storyboard-based application, you will often want to do a little preparation before navigation | ||
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender { | ||
// Get the new view controller using [segue destinationViewController]. | ||
// Pass the selected object to the new view controller. | ||
} | ||
*/ | ||
|
||
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.