in the following line,
I need to pass an int. But it only accepts an object. So I decided to use an NSNumber instance. Just before calling the above method, I want to put the value of my int into my NSNumber instance. But looking through the class methods, there is no setInt: method or anything like it. I looked through NSValue as well but nothing there either. How do I do it?
Nate
Code:
[userObject performSelector:userSelector withObject:returnValue];
Nate