Do you just want to print the objects? If so try defining the description
method in your BNRStockHolding class. Like this:
- (NSString *)description {
return [NSString stringWithFormat: @"PurchasedSharePrice=%f, CurrentSharePrice=%f", purchasedSharePrice, currentSharePrice];
}
Instead of printing the addresses it will print out the NSString you defined in there.