我想在monodevelop中为iPhone自定义我的GUI,但我似乎无法找到能告诉我如何操作的资源。如何更改背景颜色(加载图片/徽标)并更改导航栏颜色等?提前致谢! (编程方式是什么?)
答案 0 :(得分: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]];
希望它有所帮助! ;)