samhuri.net-ios/Blog/BlogSplitViewController.h

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