// // 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 */