我的所有帮助方法都在我的实现文件的底部,而没有在头文件中声明它们。这样可以,还是有必要在标题中声明它们?
示例:
#pragma mark - Helper Methods
- (void)reset {
// Reset' the following properties
//
self.image = nil;
self.imagePicker = nil;
[self.recipients removeAllObjects];
}
答案 0 :(得分:2)
不,你可以将它们保存在实现文件中。
答案 1 :(得分:1)
您不需要在标题中声明它们(甚至在私有的内部@interface
中),除非您需要能够从其他类中调用它们。