我对 Xcode 很陌生,对所有功能都不熟悉。我只是想在我的 UITabelView 下有一个背景图像。这个问题有很多答案,但所有答案都给了我这些白色的人工制品边框。所以我的问题是,有没有人最终遇到同样的问题并解决了它?为了得到一个想法,图片附在下面。
感谢您的帮助!
这里只是对我的实施的快速查看
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:
(NSDictionary *)launchOptions{
self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
// Override point for customization after application launch
//initialise main views
UIImageView *backGround = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0,
self.window.bounds.size.width, self.window.bounds.size.height)];
[backGround setImage:[UIImage imageNamed:@"Default.png"]];
[self.window addSubview:backGround];
LoginViewController *loginViewController = [[LoginViewController alloc]
initWithNibName:@"LoginViewController" bundle:nil];
self.navigationController = [[UINavigationController alloc]
initWithRootViewController:loginViewController];
self.window.rootViewController = self.navigationController;
self.window.backgroundColor = [UIColor whiteColor];
[self.window makeKeyAndVisible];
return YES;
}
[另一个 UI 项目上的相同问题]
现在我在以编程方式创建的带有圆角矩形的 UIButtons 上遇到了同样的问题。但我不知道如何摆脱它们?