How do I convert a negative number to an absolute value in Objective-C?
i.e.
-10
becomes
10?
|
How do I convert a negative number to an absolute value in Objective-C? i.e. -10 becomes 10? |
|||
|
|
|
Depending on the type of your variable, one of Those functions are all part of the C standard library, and so are present both in Objective-C and plain C (and are generally available in C++ programs too.) (Alas, there is no Apple's and GNU's Objective-C headers also include an If you're using C++ or Objective-C++, you can bring in the |
|||||||||||||||||||
|
|
Try this if you are not sure about the type and too lazy to check it:
|
|||
|
|