我在一个类中有一个常量,我定义了它#define HEIGHT 65
而且我知道如何通过调用返回这个常量的 getter 方法从这个类中得到它。我的意思是我不想这样做:
#define HEIGHT 65
.
.
.
-(int)getHeight{
return HEIGHT;
}
但问题是有没有办法定义一个常量并像其他一样@property
得到它。instanceClass.HEIGHT
properties
任何想法?
我在一个类中有一个常量,我定义了它#define HEIGHT 65
而且我知道如何通过调用返回这个常量的 getter 方法从这个类中得到它。我的意思是我不想这样做:
#define HEIGHT 65
.
.
.
-(int)getHeight{
return HEIGHT;
}
但问题是有没有办法定义一个常量并像其他一样@property
得到它。instanceClass.HEIGHT
properties
任何想法?