I'm embarrassed to say I haven't been able to google this successfully: I'm trying to save a couple of arrays of Int's (Int16 would be more than enough) as some of the attributes of a core data entity. The entity is basically a score box (like a baseball one) and it contains names of each player, and arrays for the number of points scored at each turn, among a few other standard attributes.
I'm pretty sure I need to make the array attributes Transformables. I don't know how to write the transformer. I thought I could maybe do the manual codegen, and then write some code to transform the int arrays into strings? Not sure. I can't imagine I'm the first person to try to tackle this problem, but I couldn't find anything anywhere that had a sample of something related to what I'm looking for.
If anyone could point me to a related resource, I'd really appreciate it.
Also, too, I'm a hopeless newbie.