As a beginner in Xcode, When I get the useful code from Google or myself, then I post Useful things here after self satisfaction.
Here is the code to find the Random Values between some numbers in Objective C
int minValue = 100; int maxValue = 4500; int rangeValue = maxValue - minValue; int actualValue = (arc4random() % rangeValue) + minValue;
No comments:
Post a Comment