我想在推視圖的drawRect
中畫東西。 另外,我想改變背景顏色的視圖。self.view.backgroundColor = [UIColor greenColor];在推視圖中不起作用
如果視圖是主視圖,我可以通過self.view.backgroundColor = [UIColor greenColor];
在viewDidLoad
中更改背景顏色。
我在viewDidLoad
的推,但它仍然是黑色。
MyViewController *myViewController = [MyViewController alloc]init];
[self.navigationContoller pushViewController:myViewContoller animated:YES]; // I want to change background color of this view.
[myViewController release];
糟糕。其實,它的工作。 drawRect中的CGContextClearRect導致它不起作用。我刪除了該行,它的工作原理。 – user698200