ユーザーが重複したレコードを挿入した場合、アラートでユーザーを停止する必要があります。
列 1 列 2 列 3 (ABC) 可 (BAL) 可 (ABC) レコードが重複しているため許可されません
AppDelegate *appDelegate = [[UIApplication sharedApplication] delegate];
NSManagedObjectContext *context = [appDelegate managedObjectContext];
NSManagedObject *newAdds;
newAdds = [NSEntityDescription insertNewObjectForEntityForName:@"Matches" inManagedObjectContext:context];
[newAdds setValue:club01.text forKey:@"club01"];
[newAdds setValue:club02.text forKey:@"club02"];
[newAdds setValue:matchDateVar forKey:@"matchDate"];
[newAdds setValue:matchTaypVar forKey:@"matchType"];