Created
January 16, 2014 13:00
-
-
Save hachinobu/8454619 to your computer and use it in GitHub Desktop.
定数の定義方法
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//ローカルな定数 | |
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