0

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!

user6632515
  • 193
  • 1
  • 1
  • 10

1 Answers1

0

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'.