Something I've seen in even Apple's classes is the use of an underscore before the name. It doesn't make it all private but it's a naming convention to indicate it. These usually become apparent when they appear in the stack frame.
@implementation MyClass
(void) _someMethod: anArg
{
NSLog (@"%@ was passed anArg %@", anArg);
}
@end
Otherwise you
You could try defining a static function below or above your implementation that takes a pointer to your instance. It will be able to access any of your instances variables.
//.h file
@interface MyClass : Object
{
int test;
}
- (void) someMethod: anArg;
@end
//.m file
@implementation MyClass
static void somePrivateMethod (MyClass *myClass, id anArg)
{
fprintf (stderr, "MyClass (%d) was passed %p", myClass->test, anArg);
}
- (void) someMethod: (id) anArg
{
somePrivateMethod (self, anArg);
}
@end
