10 lines
261 B
Objective-C
10 lines
261 B
Objective-C
#import <UIKit/UIKit.h>
|
|
#import "ArticleVC.h"
|
|
|
|
@class GuideVC;
|
|
|
|
@interface IPadSplitVC : UISplitViewController <UISplitViewControllerDelegate, ArticleDelegate>
|
|
@property (nonatomic, strong) UIPopoverController * pop;
|
|
|
|
-(void)replaceGuide:(GuideVC *)guide;
|
|
@end
|