2010-09-02 53 views

回答

1

基本上是:

读什么@Lou佛朗哥建议。

实现像负载视图:

- (void)loadView { 
    [super loadView]; 

    MyCustomView *view = [[MyCustomView alloc] initWithFrame:self.view.frame]; 
    self.view = view; 
    [view release]; 

    // Setup other views if needed 
} 
相关问题