山姆的編程實作分享。。。

Sam Blog, Sam Sharing, Sam Studio

2014年3月3日

Objective-C 類別宣告與實作


類別的宣告必需在 @interface 區段,其語法爲

@interface NewClassName: ParentClassName
        propertyAndMethodDeclarations;
@end

PS: 類別名稱第一個字母通常是大寫, 這是約定成俗的做法,以便區分是類別名或變數名稱

類別的實作則是在 @implementation 區段,其語法爲

@implementation NewClassName
{
        memberDeclarations;
}
        methodDefinitions;
@end


熱門文章