我使用從URL http://www.iphonemusings.com/2009/01/iphone-programming-tutorial-creating.html中提取的代碼顯示帶有選項卡欄的初始屏幕,並在兩個選項卡中都顯示了表格視圖。 在對錶格視圖委託進行必要的更改後,它在單元格中顯示文本。 現在我想顯示點擊表格視圖的視圖。我正在使用以下代碼。uitabbarcontroller + uitableviewcontroller + uiviewcontroller
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
Latest* evnt = (Latest*)[latestArray objectAtIndex:indexPath.row];
NSString* url = [evnt URLLink];
DetailedView* dv = [[DetailedView alloc] init];
[dv.label [email protected]"Testing label"];
[self.navigationController pushViewController:dv animated:YES];
[dv release];
}
但它沒有顯示任何文字。可以通過指出我的代碼中有什麼錯誤來幫助我嗎?