2011-07-08 28 views

回答

0

你可以在TTModelDelegate方法試圖隱藏/顯示錶:

#pragma mark TTModelDelegate 

- (void)modelDidStartLoad:(id<TTModel>)model { 
    [super modelDidStartLoad:model]; 

    < HIDE TABLE> 
} 

- (void)modelDidFinishLoad:(id<TTModel>)model { 
    [super modelDidFinishLoad:model]; 

    < SHOW TABLE> 
} 

- (void)model:(id<TTModel>)model didFailLoadWithError:(NSError*)error { 
    [super model:model didFailLoadWithError:error]; 

    < HIDE/SHOW (?) TABLE> 
} 
+0

謝謝男人,虐待檢查你的答案一會兒,因爲我不能檢查它:) – bluezald

相關問題