I am developing a tweak, but somehow I get the error:
use of undeclared identifier '_test' error even while the property has set.
@property (nonatomic, retain) NSArray *test;
Does anyone know how to fix?
Thanks!
I am developing a tweak, but somehow I get the error:
use of undeclared identifier '_test' error even while the property has set.
@property (nonatomic, retain) NSArray *test;
Does anyone know how to fix?
Thanks!
try
in your.h
@property (strong, nonatomic) NSArray *test;
in your.m
@implementation Viewcontroller
@synthesize test;
and for more informations check this answer Error: Use of undeclared identifier '_testArray'.