18 lines
299 B
Objective-C
18 lines
299 B
Objective-C
//
|
|
// AppDelegate.h
|
|
// FSPagerViewExample-Objc
|
|
//
|
|
// Created by Wenchao Ding on 19/01/2017.
|
|
// Copyright © 2017 Wenchao Ding. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface AppDelegate : UIResponder <UIApplicationDelegate>
|
|
|
|
@property (strong, nonatomic) UIWindow *window;
|
|
|
|
|
|
@end
|
|
|