Create the subclasses
I m new in iphone, I wan开发者_开发技巧t to create the subclasses of the NSView Class, how should i do that?
First, learn the language. Next, follow the directions.
It is not NSView
class. It is UIView
class and you can create using the following code:
@interface YourClassName : UIView {
}
@end
精彩评论