以下を使用してplistのデータを取得している場合:
NSString *path = [[NSBundle mainBundle] pathForResource:@"Providers" ofType:@"plist"];
dataArray = [NSMutableArray arrayWithContentsOfFile:path];
for (NSDictionary *dictionary in dataArray)
{
text = [dictionary valueForKey:@"text"];
checked = [dictionary valueForKey:@"checked"];
NSLog(@"%@ checked value is: %@", text, checked);
}
チェックがYESに設定されているかどうかのみを確認し、設定されている場合はプロバイダーのテキスト値を出力する条件ステートメントを作成するにはどうすればよいですか。