常數

  • 常數應宣告為static常數、而不是以#define定義。

    • 不需要開放給外界

      // 宣告於.m檔中
      static NSString *const kPFCLongName = @"Perfect Company";  
      static const CGFloat kStrokeWidth = 5.0;
    • 開放給外部

      // 宣告於.h檔中(前綴類名)
      extern NSString *const ScribbleObservingParentMarkKeyPath;
      
      // 宣告於.m檔中
      NSString *const ScribbleObservingParentMarkKeyPath = @"parentMark";

Last updated

Was this helpful?