-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathYSCKit.h
More file actions
executable file
·37 lines (30 loc) · 856 Bytes
/
YSCKit.h
File metadata and controls
executable file
·37 lines (30 loc) · 856 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
//
// YSCKit.h
// YSCKit
//
// Created by Builder on 16/6/23.
// Copyright (c) 2016 Builder. All rights reserved.
//
//==============================================================================
//
// @Description:
// 该文件引入了YSCKit框架中最常用的4个模块:
// YSCAdapter、YSCBase、YSCSingleton、YSCUtil
// 其它模块(如:YSCView、YSCViewController)则根据需要手动引入
//
//==============================================================================
#ifndef YSCKit_h
#define YSCKit_h
// system
#import <AVFoundation/AVFoundation.h>
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
#import <CoreGraphics/CoreGraphics.h>
// constant
#import "YSCMacros.h"
#import "YSCConstants.h"
// module
#import "YSCBase.h"
#import "YSCSingleton.h"
#import "YSCUtil.h"
#endif /* YSCKit_h */