Skip to content

Instantly share code, notes, and snippets.

@nicktoumpelis
Created August 13, 2014 10:14
Show Gist options
  • Save nicktoumpelis/d31583fe72406545289e to your computer and use it in GitHub Desktop.
Save nicktoumpelis/d31583fe72406545289e to your computer and use it in GitHub Desktop.
Typed constants
// external constants (defined in AAAKlass.m)
extern const CGFloat AAKlassVerticalMargin;
extern NSString * const AAAKlassIdentifier;
// 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