Interface type cannot be statically allocated?

前端 未结 3 792
庸人自扰
庸人自扰 2020-12-09 14:17

I tried to put this in the header file of my view object:

@property (nonatomic) UIColor color;

to store the color that lines should be draw

3条回答
  •  醉梦人生
    2020-12-09 15:23

    Your variable is for an object type, and as such must be declared as a pointer:

    @property (nonatomic) UIColor * color;    // Note the asterisk
    

    "Statically allocated" in this case would mean that the memory for that object was allocated at compile-time. All objects in Obj-C, however, are allocated at runtime and accessed through pointers.

    "Interface type" is kind of an overly-technical term that's meaningful to the compiler, and not terribly important here. It means that UIColor represents the interface through which the compiler expects you to interact with the variable color. The actual type of the object pointed to may be different (as with a class cluster like NSString).

提交回复
热议问题