I want two take the values at index 0 from two separate arrays and combine them together. For example, let's say the value at index 0 for array1 is NSNumber 5 and the value at index 0 for array2 is NSNUmber 7, how can I get a integer that says that the sum of the two values is 12? I'm just looking for a general answer but this is the code I have so far
NSNumber *j = [self.array1 objectAtIndex:0];
NSNumber *k = [self.array2 objectAtIndex:0];
I can't just simply add the two, but what do I have to do to allow me to add them?