1
什麼是@protocol
聲明中的「USING」字樣?聲明一個@protocol in objective-c
的聲明是:
@protocol name
USING
// declaration of methods
@end
什麼是@protocol
聲明中的「USING」字樣?聲明一個@protocol in objective-c
的聲明是:
@protocol name
USING
// declaration of methods
@end
有在Objective-C沒有using
關鍵字。
兩種可能性:
它某處定義爲宏,在這種情況下,你必須看看它在你的代碼。 (如果用右鍵點擊它,Xcode可以幫助你。)
該文件實際上是Objective-C++。 using
keyword來自C++,但我不認爲在@protocol
的上下文中有一個特殊的功能。
鑑於它是用大寫字母寫的,我會說這是一個宏。