UIView drawRect vs initWithFrame

时间:2010-07-29 23:12:15

标签: iphone cocoa-touch uiview

我有一个UIView,它有几个按钮作为子视图添加到它。目前我有drawRect:中的按钮,我听说这是一个坏主意,因为drawRect可以多次调用。我试图将这些UIButtons移动到initWithFrame,但它们不会被绘制。我该如何解决这个问题?

我没有使用界面构建器,因此不存在NIB文件。调用initWithFrame。我通过添加NSLog(...)进行检查,我的NSMutableArrays正在初始化。

我的initWitFrame:代码目前很少。它是

- (id)initWithFrame:(CGRect)frame 
{
    if (self = [super initWithFrame:frame]) 
    {
        results = [[NSMutableArray alloc] init];
        inputs = [[NSMutableArray alloc] init];
        format = [[NSDateFormatter alloc] init];
        [format setDateFormat:@"EEE, MMM dd, yyyy"];
        renc =[[RenameController alloc] init];
    }
    return self;
}

我尝试添加类似以下

的文本标签
#define BOX_WIDTH 155.0
#define BOX_OFFSET 45.00
#define ROW_HEIGHT 27

- (id)initWithFrame:(CGRect)frame 
{
    if (self = [super initWithFrame:frame]) 
    {
        results = [[NSMutableArray alloc] init];
        inputs = [[NSMutableArray alloc] init];
        format = [[NSDateFormatter alloc] init];
        [format setDateFormat:@"EEE, MMM dd, yyyy"];
        renc =[[RenameController alloc] init];

        double row=0.0;
        [self makelabel:@"Start" at:CGRectMake(0, row, BOX_OFFSET, ROW_HEIGHT)];
    }
    return self;
}

-(void) makelabel:(NSString *) str at:(CGRect) rect
{
    UILabel *title = [[UILabel alloc] initWithFrame:rect];
    title.text = str;
    title.textAlignment = UITextAlignmentLeft;
    title.textColor = [UIColor blackColor];
    title.backgroundColor = [UIColor clearColor];
    title.font = [UIFont boldSystemFontOfSize:FONT_SIZE];
    [self addSubview:title];
    [title release];
}

2 个答案:

答案 0 :(得分:7)

@tonklon是现货。此外,通常的模式是将您的自定义初始化代码放在第三种方法中,例如-sharedInit,该方法在相应的super初始化程序之后调用:

- (id)sharedInit {
    // do whatever, possibly releasing self on error and returning nil
    return self;
}

- (id)initWithFrame: (CGRect)frame {
    self = [super initWithFrame: frame];
    if (self) {
        self = [self sharedInit];
    }
    return self;
}

- (id)initWithCoder: (NSCoder *)aDecoder {
    self = [super initWithDecoder: aDecoder];
    if (self) {
        self = [self sharedInit];
    }
    return self;
}

答案 1 :(得分:2)

我打赌视图是从nib文件加载的?只需使用相同的代码在initWithCoder中添加子视图:

UIView类参考:

  

如果使用Interface Builder进行设计   你的界面,这种方法不是   在查看对象时调用   随后从nib文件加载。   nib文件中的对象是   重构然后初始化   使用他们的initWithCoder:方法,   它修改了。的属性   视图以匹配存储的属性   nib文件。有关详细信息   关于如何从笔尖加载视图   文件,请参阅资源编程指南。