私はiPhoneの初心者です。私のコードでは、キャッチされていない例外「NSInvalidArgumentException」が原因でアプリを終了するという実行時エラーが発生しています。
私のコードは
- (void)viewDidLoad
{
[super viewDidLoad];
NSString *path=[[NSBundle mainBundle] pathForResource:@"Animalfile" ofType:@"plist"];
NSDictionary *dict=[NSDictionary dictionaryWithContentsOfFile:path];
NSArray *animal=[dict valueForKey:@"image"];
NSLog(@"print:%@",dict);
NSLog(@"hello:%@",animal);
UIImage *img=[animal objectAtIndex:currentImage];
[animalphoto setImage:img];
}
私のコードに適用される提案とソースコードを教えてください....