刚刚安装了XCode更新,并且在最简单的图像加载时出现了一个非常奇怪的问题。我做了一个基本的图像视图,并将其与简单的png结合起来。得到以下消息:
2017-09-20 15:56:22.596882 + 0200 TestingImageView [1253:126865]可以 没有加载" banana.png"从束中的nib引用的图像 标识符" swift-simplest.TestingImageView
你知道原因是什么吗?
代码几乎不存在:
import UIKit
class ViewController: UIViewController {
@IBOutlet weak var testIV: UIImageView!
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
}
更新:这是solution