2010-09-02 67 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 
} 
相關問題