I have all of my helper methods at the bottom of my implementation file while not having them declared in header. Is that ok, or is it necessary to declare them in header?
Example:
#pragma mark - Helper Methods
- (void)reset {
// Reset' the following properties
//
self.image = nil;
self.imagePicker = nil;
[self.recipients removeAllObjects];
}