标签: iphone uiview subclass
我是iphone的新手,我想创建NSView类的子类,我该怎么做?
答案 0 :(得分:3)
首先,learn the language。接下来,follow the directions。
答案 1 :(得分:1)
不是NSView级。它是UIView类,您可以使用以下代码创建:
NSView
UIView
@interface YourClassName : UIView { } @end