1
변수가 NSDictionary
으로 선언되어 있습니다. 변수를 extern const NSArray
변수에 복사하려면 어떻게해야합니까? 예를 들어 :NSDictionary를 NSArray로 복사
NSMutableDictionary *selectedItem = [self.dataArray objectAtIndex:indexPath.row];
[selectedItem setObject:[NSNumber numberWithBool:targetCustomCell.checked]
forKey:@"checked"];
확인 http://stackoverflow.com/questions/2274022/nsdictionary-to-nsarray – Jhaliya