我想在self.view之上添加名爲anotherView的視圖。但我不想讓另一個視圖成爲子視圖。這可能嗎?在現有視圖頂部添加新視圖
我想anotherView是在頁面的頂部向下推相應的self.view的內容(而無需改變y或高度值。
我有以下的,它不工作:
UIView *anotherView = [[UIView alloc] initWithFrame: CGRectMake(0, 0, self.view.frame.size.width, 80)];
anotherView.backgroundColor = [UIColor yellowColor];
[self.view insertSubview:anotherView aboveSubview:self.view];
的方框是簡單地在現有的視圖的頂部
你可以添加你anotherView作爲一個視圖控制器的看法子視圖,然後出示。 – chancyWu