diff options
author | Jay Freeman (saurik) <saurik@saurik.com> | 2017-02-15 10:29:44 -0800 |
---|---|---|
committer | Jay Freeman (saurik) <saurik@saurik.com> | 2017-02-15 10:29:44 -0800 |
commit | 7ccc1484ab74ebf5797820bdd24edccfd42aaa50 (patch) | |
tree | 6bf6278957d2ff267d8685fb863c4d4da61e4056 /CyteKit/ViewController.mm | |
parent | f8c9fd4c9a853ca14ac1d1fb123e2e6200879bb4 (diff) |
Move some of our clearly shared code into CyteKit.
Diffstat (limited to 'CyteKit/ViewController.mm')
-rw-r--r-- | CyteKit/ViewController.mm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/CyteKit/ViewController.mm b/CyteKit/ViewController.mm index 52c925d..28c7c43 100644 --- a/CyteKit/ViewController.mm +++ b/CyteKit/ViewController.mm @@ -52,6 +52,10 @@ return nil; } +- (NSURL *) navigationURL { + return nil; +} + @end @implementation CyteViewController { @@ -109,10 +113,6 @@ [super unloadData]; } -- (NSURL *) navigationURL { - return nil; -} - - (void) setPageColor:(UIColor *)color { if (color == nil) color = [UIColor groupTableViewBackgroundColor]; |