ICRAppMacro.h 1.53 KB
Newer Older
mei's avatar
mei committed
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
//
//  ICRAppMacro.h
//  XFFruit
//
//  Created by Xummer on 15/3/25.
//  Copyright (c) 2015年 Xummer. All rights reserved.
//

#ifndef XFFruit_ICRAppMacro_h
#define XFFruit_ICRAppMacro_h

// COLOR
#define ICR_TINTCOLOR                   [UIColor colorWithR:63 g:134 b:244 a:1]
#define ICR_VIEW_BG_COLOR               [UIColor whiteColor]
#define ICR_BLUE_BTN_COLOR              ICR_TINTCOLOR
#define ICR_GRAY_BTN_COLOR              [UIColor lightGrayColor]
#define ICR_ORANGE_BTN_COLOR            [UIColor colorWithR:250 g:155 b:52 a:1]
#define ICR_DISABLE_BTN_COLOR           [UIColor colorWithW:202 a:1]
#define ICR_NAVIBAR_ITEM_COLOR          [UIColor whiteColor]
#define ICR_NAVIBAR_ITEM_DISABLE_COLOR  [UIColor colorWithW:1 a:.5f]
#define ICR_NAVIBAR_TITLE_COLOR         [UIColor whiteColor]
#define ICR_TABBAR_TINT_COLOR           [UIColor colorWithR:36 g:38 b:53 a:1]
#define ICR_IMAGE_BG_COLOR              [UIColor colorWithW:242 a:1]

// HTTP
//#define HTTP_REST_API_BASE_URL          @"http://115.28.191.44:8080/IPatrol/rest"

//new HTTP
陈俊俊's avatar
陈俊俊 committed
29
#define HTTP_REST_API_BASE_URL  @"http://218.244.151.129:7580/cruiser-server/rest"
陈俊俊's avatar
陈俊俊 committed
30
#define Server_Url  @"http://218.244.151.129:7580/cruiser-server"
mei's avatar
mei committed
31

陈俊俊's avatar
陈俊俊 committed
32
//#define HTTP_REST_API_BASE_URL  @"http://218.244.151.129:8281/XFFruit-server/rest"
n22's avatar
n22 committed
33

mei's avatar
mei committed
34 35 36 37 38 39 40 41 42 43 44
// Import Headers
#import "ICRUtilsMacro.h"
#import "ICRVendorMacro.h"
#import "ICRHTTPController.h"
#import "ICRUserUtil.h"
#import "ICRAppViewControllerManager.h"
#import "ICRDataBaseController.h"
#import "NSData+EncodeAdditions.h"
#import "UIScrollView+Content.h"

#endif