Hi all,
I'm stuck with a warning in Xcode while trying to develop a small iPhone App. I've got this piece of code in Xcode :
NSNumber *randomNumber = arc4random() % [array count];
If I NSLog randomNumber, everything seems to work but Xcode keeps warning me, saying :
Initialization makes pointer from integer without a cast
There must be something I didn't understand. Thanks in advance for helping me out :)