2011-05-20 55 views
0

我想爲iPhone在monodevelop中定製我的GUI,但我似乎無法找到指示我如何操作的資源。如何更改背景顏色(加載圖片/徽標)並更改導航欄顏色等?提前致謝! (什麼是做到這一點的程序化的方式?)如何更改我的iPhone GUI的配色方案?

回答

0

您可以使用下面的代碼更改導航欄的顏色:

UIWindow *window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]]; 
YourViewController *viewController = [[YourViewController alloc] init]; 
UINavigationController *navigationController = [[UINavigationController alloc] \ 
initWithRootViewController:viewController]; 
[viewController release]; 
[[navigationController navigationBar] setTintColor:[UIColor blackColor]]; 
[window addSubview:navigationController.view]; 
[self.window makeKeyAndVisible]; 

您可以設置背景顏色(我猜你要設置的背景的UIView) 的顏色像這樣

UIView *mainView = [[UIView alloc] init]; 
[mainView setBackgroundColor:[UIColor whiteColor]]; 

希望它能幫助! ;)

+0

非常感謝!工作得很好... – Kiran 2011-05-23 17:18:34