标签: objective-c class variables
我需要让我的5个方法使用一个公共变量,但我不知道在我的.m文件中将它声明到哪里。我知道这是基本的,但我很新,我忘了把它放在哪里。请帮帮我。
答案 0 :(得分:3)
@implementation { // instance variables here <--- int foo float bar; } // methods here @end