mirror of
https://github.com/zhigang1992/RestKit.git
synced 2026-04-16 23:10:50 +08:00
19 lines
396 B
Objective-C
19 lines
396 B
Objective-C
//
|
|
// RKCatalogAppDelegate.h
|
|
// RKCatalog
|
|
//
|
|
// Created by Blake Watters on 4/21/11.
|
|
// Copyright (c) 2009-2012 RestKit. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface RKCatalogAppDelegate : NSObject <UIApplicationDelegate> {
|
|
|
|
}
|
|
|
|
@property (nonatomic, retain) IBOutlet UIWindow *window;
|
|
@property (nonatomic, retain) IBOutlet UINavigationController *navigationController;
|
|
|
|
@end
|