I have 2 NSData elements that have 2 register values from a sensor. 
HighData and LowData.
In arduino world I did 
Value = (HighData << 8) + LowData;
How should I implement this with Objective-C.
Currently I have HighData, LowData of NSData type holding a byte whose values are in decimals.
I want to get the integer value, please help.