Skip to content

Instantly share code, notes, and snippets.

@hachinobu
Created January 16, 2014 13:00
Show Gist options
  • Save hachinobu/8454619 to your computer and use it in GitHub Desktop.
Save hachinobu/8454619 to your computer and use it in GitHub Desktop.
定数の定義方法
//ローカルな定数
static NSString * const kFirstName = @"hachinobu";
//グローバルな定数
//ヘッダーファイル内で宣言
extern NSString * const FirstName;
//実装ファイルで定義
NSString *const FirstName = @"hachinobu";
//ステータス
typedef NS_ENUM(NSUInteger, State) {
AState,
BState,
CState,
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment