LoginSignup
57
54

More than 5 years have passed since last update.

Modern Objective-Cのenumの書き方

Posted at

Objective-Cのお勉強。enumの作り方をよく忘れるのでメモ。
モダンなObjective-Cプログラミングでは列挙型の生成にNS_ENUMマクロを使う。

次の例はkPhotoSizeという列挙型を作成します。

typedef NS_ENUM (NSUInteger, kPhotoSize) {
    kPhotoSizeSmall,
    kPhotoSizeMedium,
    kPhotoSizeLarge,
    kPhotoSizeOriginal
};

列挙型は戻り値に設定できる。

SomeClass.h
@interface SomeClass : NSObject

- (kPhotoSize)currentPhotoSize;

@end

参考。

57
54
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
57
54