// // RYCustomPchFile.pch // SuWangMall_App // // Created by 刘荣毅 on 2017/10/19. // Copyright © 2017年 Lanni. All rights reserved. // #ifndef RYCustomPchFile_pch #define RYCustomPchFile_pch // Include any system framework and library headers here that should be included in all compilation units. // You will also need to set the Prefix Header build setting of one or more of your targets to reference this file. #ifdef DEBUG #define DLog(fmt, ...) NSLog((@"%s [Line %d] " fmt), __PRETTY_FUNCTION__, __LINE__, ##__VA_ARGS__); #else #define DLog(...) #endif // For text, messages, etc #define DEFAULT_FONTSIZE 15 #define DEFAULT_FONT(s) [UIFont fontWithName:@"ArialMT" size:s] #define DEFAULT_BOLDFONT(s) [UIFont fontWithName:@"Arial-BoldMT" size:s] // For table cells #define CELL_FONTSIZE 16 #define CELL_FONT(s) [UIFont fontWithName:@"Helvetica-Oblique" size:s] #define CELL_BOLDFONT(s) [UIFont fontWithName:@"Helvetica-BoldOblique" size:s] #endif /* RYCustomPchFile_pch */