mirror of
https://github.com/samsonjs/samhuri.net-ios.git
synced 2026-03-25 09:25:47 +00:00
21 lines
No EOL
582 B
Objective-C
21 lines
No EOL
582 B
Objective-C
//
|
|
// Created by Sami Samhuri on 2015-06-27.
|
|
// Copyright (c) 2015 Guru Logic Inc. All rights reserved.
|
|
//
|
|
@import UIKit;
|
|
|
|
@class PostsViewController;
|
|
@class EditorViewController;
|
|
@class SamhuriNet;
|
|
|
|
@interface BlogSplitViewController : UISplitViewController
|
|
|
|
@property (nonatomic, strong) SamhuriNet *site;
|
|
|
|
- (UINavigationController *)masterNavigationController;
|
|
- (UINavigationController *)detailNavigationController;
|
|
- (PostsViewController *)postsViewController;
|
|
- (EditorViewController *)editorViewControllerForPhone;
|
|
- (EditorViewController *)editorViewControllerForPad;
|
|
|
|
@end |