我有两个UIViewController,其中显示照片,事实是当我在它们之间切换时,我会无限制地添加50-70mb的RAM等。
var tags: [TagForRecipe] = [] // CoreData entity
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "tagCell", for: indexPath) as! TagsTableViewCell
cell.tags.text = tags[indexPath.row].nameTag
cell.images.image = UIImage(contentsOfFile: (tags[indexPath.row].image as! URL).path)
return cell
}
import UIKit
class TagsTableViewCell: UITableViewCell {
@IBOutlet weak var images: UIImageView!
@IBOutlet weak var tags: UILabel!
override func awakeFromNib() {
super.awakeFromNib()
// Initialization code
}
override func setSelected(_ selected: Bool, animated: Bool) {
super.setSelected(selected, animated: animated)
// Configure the view for the selected state
}
}
答案 0 :(得分:1)
您应该使用contentOfFiles而不是情节提要中的图像进行设置。 删除图像出口和情节提要中的图像,然后在viewDidLoad中使用以下代码:
override func viewDidLoad() {
super.viewDidLoad()
if let splashPath = Bundle.main.path(forResource: "bg", ofType: "png") {
backgroundImgView.image = UIImage.init(contentsOfFile: splashPath)
}
}
答案 1 :(得分:0)
我没有在图表中看到任何内存泄漏。它只显示到目前为止使用的内存量。内存泄漏是第二行,如果有,则标记为红色。有关详情,请查看this链接
如果您的图片太大,请尝试调整它们的大小。这将提高性能,滚动时您的tableview将会流畅。