单独在.h文件的interface()方法中定义变量而不综合它有什么区别?
我在 .h 文件的接口方法中定义一个变量,如下所示...
@interface ......{
int a;
}
然后我在 .m 文件中使用它,它工作正常....
我还修改了 .h 文件中的代码
@interface ......{
int a;
}
@property(nonatomic) int a;
,并在 .m 文件中设置了int value as
@synthesis a;
现在也可以正常工作...
这两种情况有什么不同?
谢谢
I define a variable in .h file's interface method like this...
@interface ......{
int a;
}
Then i use it in .m file, it works fine....
Also i modified the code as
@interface ......{
int a;
}
@property(nonatomic) int a;
in .h file, and in .m file i set the int value as
@synthesis a;
Now also it works fine...
What is the different between both cases?
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论