我想将myview设置为隐藏并查看可见,我该怎么做。这是我到目前为止得到的代码,但它使所有内容都隐藏了。
CGRect frame = CGRectMake(185, 960, 768, 1004);
HiUIView *view = [[UIView alloc] initWithFrame:frame];
view.backgroundColor = [UIColor redColor];
[self.myview addSubview:view];
[self.myview setHidden:YES];