I'm trying to create a global block that can be used from any method. I want this block to access @properties of the class. But when I try to do this I get "use of undeclared identifier self" accessing the backing variables _myVar also doesn't work.
Why doesn't this work? And what work around would give me a block that I can access from any method? Thanks.
An example:
@interface myClass()
@property (nonatomic,assign) BOOL subjectSex;
@end
@implementation
// these returns will get: use of undeclared identifier
int (^myBlock) = ^{
if(self.subjectSex) return 1;
return (!_subjectSex);
}
@end
selfto be here? – Chuck Jan 31 at 20:38