The “Modern Objective-C” way to do this is to declare them in your implementation block, like this:
@implementation ClassName {
int privateInteger;
MyObject *privateObject;
}
// method implementations etc...
@end
See this earlier post of me with more details.