SideSlipConfig.h 957 B

12345678910111213141516171819202122232425262728293031323334
  1. //
  2. // SideSlipConfig.h
  3. // IBOSSMAP
  4. //
  5. // Created by apple on 2017/4/1.
  6. // Copyright © 2017年 apple. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import <CoreGraphics/CoreGraphics.h>
  10. @interface SideSlipConfig : NSObject
  11. #define LocalString(s) NSLocalizedString(s, nil)
  12. //color
  13. extern NSString * const FILTER_RED_STRING;
  14. extern NSString * const FILTER_BLACK_STRING;
  15. extern NSString * const FILTER_COLLECTION_ITEM_COLOR_NORMAL_STRING;
  16. extern NSString * const FILTER_COLLECTION_ITEM_COLOR_SELECTED_STRING;
  17. extern NSString * const FILTER_BACKGROUND_COVER_COLOR;
  18. extern CGFloat const FILTER_BACKGROUND_COVER_ALPHA;
  19. //Notification
  20. extern NSString * const FILTER_NOTIFICATION_NAME_DID_RESET_DATA;
  21. extern NSString * const FILTER_NOTIFICATION_NAME_DID_COMMIT_DATA;
  22. //UI
  23. extern CGFloat const BOTTOM_BUTTON_FONT_SIZE;
  24. //class
  25. extern NSString * const FILTER_NAVIGATION_CONTROLLER_CLASS;
  26. #define BOTTOM_BUTTON_HEIGHT 0.05*SCREEN_HEIGHT
  27. @end