我一直在類文件中設置我的方法原型,而不是頭文件。我不確定它是否真的有所作爲,我應該使用頭文件。iPhone方法原型
以這種方式設置原型有缺點或優點嗎?
#import "SettingsViewController.h"
@interface SettingsViewController()
- (void)syncSettings;
@end
@implementation SettingsViewController
- (void)syncSettings
{
// Code Here
}
// Other Methods
@end
[可能在.h文件和.m文件中指定@interface和@end聲明方法之間的差異的重複(http://stackoverflow.com/questions/8196170/difference-between-declaring-methods-in- h-file-and-in-m-file-specify-inter) – 2012-03-01 03:00:03