创建子类

时间:2011-04-25 04:59:11

标签: iphone uiview subclass

我是iphone的新手,我想创建NSView类的子类,我该怎么做?

2 个答案:

答案 0 :(得分:3)

首先,learn the language。接下来,follow the directions

答案 1 :(得分:1)

不是NSView级。它是UIView类,您可以使用以下代码创建:

@interface YourClassName : UIView {

}

@end