Matt, let me take a guess what what you're trying to do:
You want a database of classes, each with a name and a number. This wouldn't require a single relationship, and would be very easy to implement!
In the top right pane of the data model view, you would make your class, "Classes" or whatever, and in the next pane to the right, you would press the "+" button to "Add Attribute" for attributes you would title "name" and "number." In the far right column of this view, select "String" for name, and "Integer" for the number.
In interface builder, you will add an array controller to the model view, and then select your array controller, go into the bindings inspector, open the bottom tab for "ManagedObjectContext," and select "File's Owner's" managedObjectContext (Remember to declare this in your View Controller, and deallocate it in the dealloc method definition).
I suspect you will only need one table view, but with multiple columns. Click your table view twice, and in the attributes inspector set the columns to 3. then select each column individually, and in the bindings inspector again, set each column's value to the attribute of the Array Controller you want it to display.
Add a couple buttons that you bind to the array controller's "Add" and "Remove" methods and you should be set.