Hi everyone,
I've set up a database with a table that deals with let's say currency. It has name (ie US Dollars, Pound, etc), symbol (ie $, £, etc) as attributes. Now I have set up another table, let's say price with amount (a float) as the attribute and a relationship named currency that has a destination of the currency table and no Inverse.
When I try to create a new Price entry i get an error with my line
Code:
[newPriceObject setCurrency:aCurrency];
When I comment out this line it works great. So I know newPriceObject is set up correctly and functions as expected. I know aCurrency is of type Currency.
I get the SIGABRT error on the above line.
Thanks for any help you can offer.