I have another arrays problem...
I have declared an array as follows:
NSArray *sliderValAtTimes;
This is the code with the error:
Code:sliderValAtTimes[x] = sliderValue;
Error: Expected method to write array element not found on object of type 'NSArray *'
Declarations:
int x = 0;
sliderValue = [[NSString alloc] initWithFormat:@"%0.0f", self.slider.value];
Any help would be great!