There are two ways to accomplish this:
1st option- As previous replies pointed, in the .h file:
myfile.h
extern const int MY_CONSTANT_VARIABLE;
and in myfile.m define them
myfile.m
const int MY_CONSTANT_VARIABLE = 5;
2nd option- My favourite:
myfile.h
static const int MY_CONSTANT_VARIABLE = 5 ;