我想在一個類的.h中的靜態varibale,並希望它被繼承到它的子類。聲明公共靜態變量在目標c
@interface :UIViewController
static bool isSearchWindowOpen ; //something like this.
@end
如果我這樣寫:
static bool isSearchWindowOpen ;
@interface :UIViewController
@end
它工作正常,但不能由子類繼承。
請提出建議。
界面聲明中的冒號是什麼? 「繼承」是什麼意思?你想讓變量可見嗎?還是你想讓每個(子)類引用它自己的變量?目前還不清楚你想要達到的目標。 –