LoginSignup
2
2

More than 5 years have passed since last update.

enumの書き方

Posted at

Objective-C

typedef NS_ENUM(NSInteger, UITableViewCellStyle) {
  UITableViewCellStyleDefault,
  UITableViewCellStyleValue1,
  UITableViewCellStyleValue2,
  UITableViewCellStyleSubtitle
};
  • NS_ENUMを使う
  • 各要素にprefixとして、定義したenumの名前をつけておく

ただ、個人的には実装ファイル(.m)内でしか使わないようなenumprefixつけない事が多い。

Swift

enum UITableViewCellStyle: Int {
    case Default
    case Value1
    case Value2
    case Subtitle
}

となるらしい。

2
2
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
2
2