tags:

views:

32

answers:

1
+1  A: 

You are trying to get a lenght of an object that is NSDecimalNumber, but NSDecimalNumber doesn't have such a property. So the bug in your code is in one of the rows you call something.length or [something length].

NSDecimalNumber documentation.

texmex5