Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试图在选择表中的单元格时尝试使新的Uiview出现。不过,我不想继续使用新视图。我只是想将当前表格的区域替换为新的 UIView。这是否可行,任何人都可以指出正确的方向。
在您的 UITableView 的didSelectRowAtIndexPath:(NSIndexPath *)indexPath方法中创建一个新视图,并addsubview在顶部的新视图UITableView
didSelectRowAtIndexPath:(NSIndexPath *)indexPath
addsubview
UITableView
UIView *newView = [[UIView alloc] initWithFrame:tableView.frame]; //customize new view [self.view addSubview:newView]; tableView.hidden = YES;