Does it even matter? Const before or const after? I'm guessing that whether I put const
before or after CGFloat
it makes the value of CGFloat
constant, but what about the pointer? Is this right for Objective-C:
// Example.h
extern CGFloat const kPasscodeInputBoxWidth;
// Example.m
CGFloat const kPasscodeInputBoxWidth = 61.0f;