嗨,我已经看到了两种在 .m 文件中声明隐藏实例变量的方法 1)
@interface MyClass()
{
//my ivars
}
@end
@implementation MyClass
//my implementation
@end
2)
@implementation MyClass
{
//my ivars
}
//my implementation
@end
对两者之间的区别和/或编码约定感到困惑。谢谢你的帮助!
嗨,我已经看到了两种在 .m 文件中声明隐藏实例变量的方法 1)
@interface MyClass()
{
//my ivars
}
@end
@implementation MyClass
//my implementation
@end
2)
@implementation MyClass
{
//my ivars
}
//my implementation
@end
对两者之间的区别和/或编码约定感到困惑。谢谢你的帮助!