18 lines
336 B
Objective-C
18 lines
336 B
Objective-C
//
|
|
// UnrarExampleAppDelegate.h
|
|
// UnrarExample
|
|
//
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@class UnrarExampleViewController;
|
|
|
|
@interface UnrarExampleAppDelegate : NSObject <UIApplicationDelegate>
|
|
|
|
@property (nonatomic, strong) IBOutlet UIWindow *window;
|
|
@property (nonatomic, strong) IBOutlet UnrarExampleViewController *viewController;
|
|
|
|
@end
|
|
|