配列をシャッフルしようとしていますが、最後のステートメントで「'NSArray' の可視の @interface がセレクター 'exchangeObjectAtIndex:withObjectAtIndex:' を宣言していません。
bArray はどのように宣言する必要がありますか?
NSArray *bArray;
そして
- (void)viewDidLoad
[self shuffleb];
それから
-(void) shufflb
{
bArray = [NSArray arrayWithObjects:
@"ca",
@"do",
@"ba",
@"tr",
@"bu",
@"bl",
@"bo",
@"pu",
nil];
NSInteger count = [bArray count];
for (NSUInteger i = 0; i < count; ++i) {
// Select a random element between i and end of array to swap with.
NSInteger nElements = count - i;
n = (arc4random() % nElements) + i;
[bArray exchangeObjectAtIndex:i withObjectAtIndex:n];
}