标签: objective-c xcode syntax-error
我在类中声明了一个局部变量:
@interface EventDetailsViewController () { UIImageView *imgEvent; float lastHeight; }
但是XCode在lastHeight;结束时发出警告:预期';'在声明清单的末尾。我添加了';'标点。这个错误出了什么问题?
lastHeight;