CPL's iOS Resources
iOS code snippets & other daily musings
Pages
(Move to ...)
iPhone Tricks n Treats
My Portfolio
Edible Monterey Bay Farmers' Markets
Panoramic Pictures
Virtual Eye for the Sailing Guy
Panoramio Widgets
Tutorial Central
Map Kit
Blog
▼
Tuesday, June 28, 2011
random method
A simple random number generator method
- (float)randomNumber // -1.000 to +1.000
{
int y = (random() % 2000) - 1000;
float randomNumber = y / 1000.0;
return randomNumber;
}
‹
›
Home
View web version