我是初学者,在显示图片时遇到iOS问题。基本上,它不是显示任何图像,而是显示蓝色模糊。我尝试过各种各样的图像,以及过去曾在其他项目中运行良好的图像。由于我是相当新的,我不知道这可能是一个错误或我会在首选项或其他类型的设置问题中改变的东西。为了确保没有其他任何事情发生,我已经开始了一个新项目,所有项目都是一个视图控制器:
h file:
#import <UIKit/UIKit.h>
@interface ViewController : UIViewController
- (IBAction)Pressed:(id)sender;
@end
m file:
#import "ViewController.h"
@interface ViewController ()
@end
@implementation ViewController
- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
}
- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
- (IBAction)Pressed:(id)sender {
UIImage *buttonImage = [UIImage imageNamed:@"Image.png"];
[sender setImage:buttonImage forState:UIControlStateNormal];
}
@end
正如我所说的,我已经尝试过png,jpg,可以在其他项目上运行的图像等等。这只是当你点击按钮时模拟器中发生的事情的几个例子:
只是图像的轮廓,但是蓝色。至少可以说非常令人沮丧。我已经尝试过我在这里提出的建议,比如设置色调和背景以清除无济于事。
[sender setTintColor:[UIColor clearColor]];
[sender setBackgroundColor:[UIColor clearColor]];
另外,开始我认为这可能与我正在进行的项目有关,但是我开始的任何新项目都会发生这种情况。这可能是个错误吗?是否值得从头开始重新安装Xcode? Xcode会出现这种错误吗?任何输入赞赏。