18 lines
292 B
Objective-C
18 lines
292 B
Objective-C
//
|
|
// AppDelegate.h
|
|
// Example-TodayExtension
|
|
//
|
|
// Created by dingwenchao on 9/8/16.
|
|
// Copyright © 2016 dingwenchao. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface AppDelegate : UIResponder <UIApplicationDelegate>
|
|
|
|
@property (strong, nonatomic) UIWindow *window;
|
|
|
|
|
|
@end
|
|
|