I think you have your labels in your post reversed? Maybe you have it right in the files; the .h file as the interface and the property; the .m file has the synthesize and the implementation.
In the .m file, you can replace this:
Code:
NSArray *myArray= [NSArray arrayWithObjects:
@"Response 1.",
@"Response 2.", nil];
with this
Code:
self.myArray= [NSArray arrayWithObjects:
@"Response 1.",
@"Response 2.", nil];
The first one makes a new pointer variable and uses it, the second one uses the property that you set up the the .h file.