| 12345678910111213141516171819202122232425262728293031323334 |
- //
- // SideSlipConfig.h
- // IBOSSMAP
- //
- // Created by apple on 2017/4/1.
- // Copyright © 2017年 apple. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #import <CoreGraphics/CoreGraphics.h>
- @interface SideSlipConfig : 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;
- //UI
- extern CGFloat const BOTTOM_BUTTON_FONT_SIZE;
- //class
- extern NSString * const FILTER_NAVIGATION_CONTROLLER_CLASS;
- #define BOTTOM_BUTTON_HEIGHT 0.05*SCREEN_HEIGHT
- @end
|