我有一个使用 Three20 生成“.xib”的视图控制器
我想要一个 tableView 给我这个 ViewController 没有“.xib”,就像你做的那样?
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
if (!self.albumController) {
self.albumController = (AlThumbsViewController *)self; //AlThumbsViewController no have xib //Three20 is generated automatically with
}
[self.navigationController pushViewController:self.albumController animated:YES];
[self.albumController release];
self.albumController = nil;
}
谢谢大家。