I just started programming Objective-C and, having a background in Java, wonder how people writing Objective-C programs deal with private methods.
I understand there
As other people said defining private methods in the @implementation block is OK for most purposes.
On the topic of code organization - I like to keep them together under pragma mark private for easier navigation in Xcode
@implementation MyClass
// .. public methods
# pragma mark private
// ...
@end