这段代码:
__weak VeryCool *weakSelf = self;
something.changeHandler = ^(NSUInteger newIndex) {
if (newIndex == 0) {
[weakSelf.options removeObjectForKey:@"seller"];
}
};
警告我找不到属性选项。这是真的,因为 options 是一个 ivar,但没有声明为属性。是否有可能以某种方式从 weakSelf 获得选项而不将其声明为属性?