我有这样的架构:
----- main view
|
---right bar view
|
----- Navigation Controller view
|
------tableView Controller
当我在tableViewController上时,如何从窗口中删除右侧栏视图?
答案 0 :(得分:0)
试试这个:
[self.view.superview.superview removeFromSuperview];
另一种更清洁的方法是使用通知:您可以向控制主视图的对象发送通知,以便将其删除右侧栏子视图。它会是这样的:
在主视图控制器中:
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(removeRightBar:)
name:@"RemoveRightBarNotification"
object:nil];
- (void) receiveTestNotification:(NSNotification *) notification
{
<REMOVE SUBVIEW FROM mainView>
}
并在您的表视图控制器中:
[[NSNotificationCenter defaultCenter]
postNotificationName:@"RemoveRightBarNotification"
object:self];
在这种情况下,通知将在主视图和表视图控制器之间提供非常松散的连接。
答案 1 :(得分:0)
将标记用于要删除的视图,并删除该标记的引用
喜欢:
在将右栏视图添加到主视图(self.view)之前添加标签
rightBarView.tag = 1;
并删除特写视图写
for(UIView *temp in [self.view subviews]) {
if (temp.tag == 1) {
[temp removeFromSuperview];
}
}
希望这会有所帮助。