AppConfigs.h 857 Bytes
Newer Older
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
//
//  AppConfigs.h
//  RealEstateManagement
//
//  Created by Z on 16/6/29.
//  Copyright © 2016年 上海勾芒信息科技. All rights reserved.
//

#ifndef AppConfigs_h
#define AppConfigs_h
#import <Foundation/Foundation.h>
//获取APP的icon
#define APP_ICON [UIImage imageNamed:[[[[NSBundle mainBundle] infoDictionary] valueForKeyPath:@"CFBundleIcons.CFBundlePrimaryIcon.CFBundleIconFiles"] lastObject]]

//获取APP版本
#define APP_VERSION [[[NSBundle mainBundle] infoDictionary] objectForKey:@"CFBundleShortVersionString"]

//获取APP名字
#define APP_NAME [[[NSBundle mainBundle] infoDictionary] objectForKey:@"CFBundleDisplayName"]

//客服电话
static NSString *const APP_MOBILE = @"400-400-4000";

//版权信息
static NSString *const APP_COPYRIGHT = @"Copyright © 2017年 GomoreTech. All rights reserved.";


#endif /* AppConfigs_h */