Created
August 13, 2014 10:14
-
-
Save nicktoumpelis/d31583fe72406545289e to your computer and use it in GitHub Desktop.
Typed constants
This file contains 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
// external constants (defined in AAAKlass.m) | |
extern const CGFloat AAKlassVerticalMargin; | |
extern NSString * const AAAKlassIdentifier; |
This file contains 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
// internal constants | |
static const NSTimeInterval kAnimationDuration = 1.0; | |
static NSString * const kCellIdentifier = @"ItemCell"; | |
// external constants (declared in AAAKlass.h) | |
const CGFloat AAAKlassVerticalMargin = 23.0; | |
NSString * const AAAKlassIdentifier = @"AAASomeIdentifier; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment