如果view是属性,则不执行InitWithFrame

时间:2011-06-15 10:13:46

标签: iphone objective-c ios uiview properties

我有从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。

1 个答案:

答案 0 :(得分:3)

从NIB加载时不会调用

initWithFrame,而是initWithCoder

如果您可能同时使用NIB加载和程序化创建,那么您应该制作一个可以从initCommoninitWithFrame调用的常用方法(initWithCoder?)。


哦,你的init方法没有使用推荐的做法:

- (id)initWithFrame:(CGRect)frameRect
{
    if (!(self = [super initWithFrame:frameRect]))
        return nil;

    // ...
}

您应该始终检查[super init...]的返回值。