重庆迈尖科技有限公司
2018-08-14 02d5ce9e2d6a8a726ae101ab68ef0b606f41b996
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
38
39
40
//
//  ZYSideSlipFilterConfig.h
//  ZYSideSlipFilter
//
//  Created by zhiyi on 16/10/17.
//  Copyright © 2016年 zhiyi. All rights reserved.
//
 
#import <Foundation/Foundation.h>
#import <CoreGraphics/CoreGraphics.h>
 
@interface ZYSideSlipFilterConfig : NSObject
#define LocalString(s) NSLocalizedString(s, nil)
 
//color
extern NSString * const FILTER_RED_STRING;
extern NSString * const FILTER_BLACK_STRING;
extern NSString * const FILTER_COLLECTION_ITEM_COLOR_NORMAL_STRING;
extern NSString * const FILTER_COLLECTION_ITEM_COLOR_SELECTED_STRING;
extern NSString * const FILTER_BACKGROUND_COVER_COLOR;
extern CGFloat    const FILTER_BACKGROUND_COVER_ALPHA;
 
//Notification
extern NSString * const FILTER_NOTIFICATION_NAME_DID_RESET_DATA;
extern NSString * const FILTER_NOTIFICATION_NAME_DID_COMMIT_DATA;
 
extern NSString * const FILTER_NOTIFICATION_NAME_DID_CHANGE_TEXT;
 
//UI
extern CGFloat const BOTTOM_BUTTON_FONT_SIZE;
 
//class
extern NSString * const FILTER_NAVIGATION_CONTROLLER_CLASS;
 
#define BOTTOM_BUTTON_HEIGHT 0.05*SCREEN_HEIGHT
//#define BOTTOM_BUTTON_HEIGHT 100
 
//
 
@end