我有从UIView继承的GraphicView类。它的initWithFrame
方法是:
@implementation GraphicsView
- (id)initWithFrame:(CGRect)frameRect
{
self = [super initWithFrame:frameRect];
// Create a ball 2D object in the upper left corner of the screen
// heading down and right
ball = [[Object2D alloc] init];
ball.position = [[Point2D alloc] initWithX:0.0 Y:0.0];
ball.vector = [[Vector2D alloc] initWithX:5.0 Y:4.0];
// Start a timer that will call the tick method of this class
// 30 times per second
timer = [NSTimer scheduledTimerWithTimeInterval:(1.0/30.0)
target:self
selector:@selector(tick)
userInfo:nil
repeats:YES];
return self;
}
使用Interface Builder我已经向ViewController.xib
添加了一个UIView(class = GraphicView)。我添加了GraphicView
作为属性:
@interface VoiceTest01ViewController : UIViewController {
IBOutlet GraphicsView *graphView;
}
@property (nonatomic, retain) IBOutlet GraphicsView *graphView;
- (IBAction)btnStartClicked:(id)sender;
- (IBAction)btnDrawTriangleClicked:(id)sender;
@end
但由于此代码不起作用,我需要调用[graphView initWithFrame:graphView.frame]
才能使其正常工作。
- (void)viewDidLoad {
[super viewDidLoad];
isListening = NO;
aleatoryValue = 10.0f;
// Esto es necesario para inicializar la vista
[graphView initWithFrame:graphView.frame];
}
我做得好吗?有没有更好的方法呢?
如果我将GraphicView添加为属性,我不知道为什么不调用initWitFrame。
答案 0 :(得分:3)
initWithFrame
,而是initWithCoder
。
如果您可能同时使用NIB加载和程序化创建,那么您应该制作一个可以从initCommon
和initWithFrame
调用的常用方法(initWithCoder
?)。
哦,你的init方法没有使用推荐的做法:
- (id)initWithFrame:(CGRect)frameRect
{
if (!(self = [super initWithFrame:frameRect]))
return nil;
// ...
}
您应该始终检查[super init...]
的返回值。