1.9、建议:使用常类型变量,而不是内嵌的字符串字面值或数字
2016-07-19 本文已影响3人
半升多瑙河
说明:常类型变量便于复用常用的变量值(如π),同时可以快速地修改值而无
需查找替换。 示例:良好的风格:
static NSString * const RNCAboutViewControllerCompanyName = @"The
NewYork Times Company";
static const CGFloat RNCImageThumbnailHeight = 50.0;
不良好的风格:
#define CompanyName @"The New York Times Company" #define thumbnailHeight 2