以下のように入力したのですが、case 0 以降の行で期待される表現と、宣言されていない識別子 "bundle" を使用しているというエラーが表示されます。問題の内容と解決方法を誰かに教えてもらえますか?
どうもありがとうございました。
-(IBAction) segmentedControlIndexChanged{
switch (self.segmentedControl.selectedSegmentIndex) {
case 0:
NSBundle *bundle = [[NSBundle alloc ]init];
NSString *path = [bundle pathForResource:@"HK" ofType:@"plist"];
placeArray = [[NSArray alloc] initWithContentsOfFile:path];
break;
case 1:
NSLog(@"case 1");
break;
case 2:
NSLog(@"case 2");
break;
case 3:
NSLog(@"case 3");
break;
case 4:
NSLog(@"case 4");
break;
default:
break;
}
}