我添加了一个视图作为我的uiviewcontroller的子视图,如下所示:
// into my ViewController:
UIImageView *imView =[[UIImageView alloc] initWithImage:[UIImage imageNamed:@"img.jpg"]];
imView.frame = CGRectMake(2, 46, 1020, 720);
[self.view addSubview:imView];
现在,我想用另一个按钮从子视图链中删除imView .. 我该怎么办? 感谢