mirror of
https://github.com/wu736139669/ManagerDemo.git
synced 2026-08-05 05:55:42 +00:00
40 lines
1006 B
C
40 lines
1006 B
C
//
|
|
// ManagerConstants.h
|
|
// ManagerDemo
|
|
//
|
|
// Created by xmfish on 14-8-8.
|
|
// Copyright (c) 2014年 ash. All rights reserved.
|
|
//
|
|
|
|
#ifndef ManagerDemo_ManagerConstants_h
|
|
#define ManagerDemo_ManagerConstants_h
|
|
|
|
|
|
/**
|
|
* 接口地址
|
|
*/
|
|
|
|
#define DaiDaiTong_API_URL @"mobi.yingyinglicai.com:8443/front"
|
|
/**
|
|
* 系统版本
|
|
*/
|
|
#define IOS_VERSION ( [[UIDevice currentDevice].systemVersion floatValue] )
|
|
#define IOS7_OR_LATER ( [[[UIDevice currentDevice] systemVersion] compare:@"7.0"] != NSOrderedAscending )
|
|
#define DEVICE_IS_IPHONE5 ([[UIScreen mainScreen] bounds].size.height == 568)
|
|
/**
|
|
* 获取当前window宽高
|
|
*/
|
|
#define ScreenWidth [[UIScreen mainScreen] bounds].size.width
|
|
#define ScreenHeight [[UIScreen mainScreen] bounds].size.height
|
|
|
|
/**
|
|
* 系统字体
|
|
*/
|
|
#define Font_Black(fontsize) [UIFont fontWithName:@"HelveticaNeue-Bold" size:fontsize];
|
|
|
|
/**
|
|
* 点击的背景颜色
|
|
*/
|
|
#define Touch_BackGroudColor [UIColor colorWithWhite:0.5 alpha:0.1]
|
|
#endif
|