爲什麼此代碼不能用於從類引用常量?爲什麼此代碼不能用於從類引用常量?
背景:我希望能夠在類變量類型的方法中引用類中的常量值,因爲這是源代碼有意義的地方。嘗試找到有效讓班級提供暴露常數的最佳方式。我試過以下,但它似乎沒有工作,我得到:
@interface DetailedAppointCell : UITableViewCell {
}
extern NSString * const titleLablePrefix;
@end
#import "DetailedAppointCell.h"
@implementation DetailedAppointCell
NSString * const titleLablePrefix = @"TITLE: ";
@end
// usage from another class which imports
NSString *str = DetailedAppointCell.titleLablePrefix; // ERROR: property 'titleLablePrefix' not found on object of type 'DetailedAppointCell'
check [this](http://stackoverflow.com/questions/538996/constants-in-objective-c) – 2011-06-16 05:51:54