simple obj-c naming question
Posted
by Highstead
on Stack Overflow
See other posts from Stack Overflow
or by Highstead
Published on 2010-04-22T19:16:41Z
Indexed on
2010/04/23
3:23 UTC
Read the original article
Hit count: 199
objective-c
This question is more to figure out how to look up classes and objects in objective-c but i lack the knowledge to figure out how to look this up so i pose the question here.
In .Net if i had a MyObject.MyValue the MyValue would be called a property, and I could look this up in MSDN. In java i would check the javadocs online (and that property would have to be a value).
With objective-c that is called a ? and if i wanted to look it up i would look where?
Example:
//Object.???
UIImage.backgroundColor = [UIColor blueColor];
© Stack Overflow or respective owner