10
我發現從here一些示例代碼。+(無效)初始化在Objective-C類靜態變量構造函數
static UIImage *backgroundImageDepressed;
/**
*
*/
@implementation DecimalPointButton
+ (void) initialize {
backgroundImageDepressed = [[UIImage imageNamed:@"decimalKeyDownBackground.png"] retain];
}
是這樣的 - +(void) initialize
方法在目標C中初始化一個類(接口)的靜態變量?我從來沒有見過這個。