I come from an AS3 background where there is a classpath where you can put your own classes. I'm just starting out with Xcode 4, Objective C, etc.
For example I have my "Utils" class, "Numbers" class, etc. I use them in my AS3 projects for frequent stuff. What I do is create static methods (as in class methods) so I don't have to create an instance to do Numbers.convertRadToDeg(34)
AFAIK in ObjC it would be something like that [Numbers convertRadToDeg:34]
¿So how would I approach this in Objective C?
¿Is there a folder where I can put my classes?
¿Do I have to create my own framework?
¿Is it a good idea to use class methods to do that in Objective C?
TIA
For example I have my "Utils" class, "Numbers" class, etc. I use them in my AS3 projects for frequent stuff. What I do is create static methods (as in class methods) so I don't have to create an instance to do Numbers.convertRadToDeg(34)
AFAIK in ObjC it would be something like that [Numbers convertRadToDeg:34]
¿So how would I approach this in Objective C?
¿Is there a folder where I can put my classes?
¿Do I have to create my own framework?
¿Is it a good idea to use class methods to do that in Objective C?
TIA