• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

ios - 具有许多图像的 UITableView 高内存使用率

[复制链接]
菜鸟教程小白 发表于 2022-12-13 14:10:32 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

您好,我正在使用 MKMapSnapshotter 生成 map 图像并使用 SDWebImage 缓存它们。 map 图像将显示在每个 uitableview 单元格中。

我遇到的问题是对于大约 30 个 uitableview 单元,使用的内存为 130 MB,如果我不使用 map 图像,则使用的内存为 25 MB,最后使用 map 图像但没有缓存(如生成每次显示单元格时映射图像)使用的内存为 50 MB。

如何减少内存使用?或者我如何存储图像以减少它们占用的内存空间?任何帮助,将不胜感激。 我的代码如下。

全类第一:

var imageCache: SDImageCache!
var mySnapOptions: MKMapSnapshotOptions!
let regionRadius: CLLocationDistance = 300
let queue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH, 0)

在 viewDidLoad() 中:

imageCache = SDImageCache(namespace: "myNamespace")
mySnapOptions = MKMapSnapshotOptions()
mySnapOptions.scale = UIScreen.mainScreen().scale

在 cellForRow 中:

override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath, object: PFObject?) -> TableViewCell? {
    let cell = tableView.dequeueReusableCellWithIdentifier("Cell", forIndexPath: indexPath) as! TableViewCell

    if let post = object {
        cell.mapImageView.image = UIImage(named: "MapPlaceholder")

        let tempLoc = post["location"] as! PFGeoPoint
        let loc = CLLocation(latitude: tempLoc.latitude, longitude: tempLoc.longitude)

        imageCache.queryDiskCacheForKey(post.objectId, done: {(image: UIImage?, cacheType: SDImageCacheType!) in
            if let cachedImage = image {
                cell.mapImageView.image = cachedImage
            }else {
                cell.mapPinImageView.hidden = true
                cell.mapActivityIndicator.startAnimating()

                dispatch_async(self.queue) { () -> Void in
                    self.mySnapOptions.region = MKCoordinateRegionMakeWithDistance(loc.coordinate,
                        self.regionRadius * 2.0, self.regionRadius * 2.0)
                    self.mySnapOptions.size = (cell.mapImageView.image?.size)!

                    MKMapSnapshotter(options: self.mySnapOptions).startWithCompletionHandler { snapshot, error in
                        guard let snapshot = snapshot else {
                            print("Snapshot error: \(error)")
                            return
                        }
                        self.imageCache.storeImage(snapshot.image, forKey: post.objectId, toDisk: true)
                        dispatch_async(dispatch_get_main_queue(), {
                            cell.mapActivityIndicator.stopAnimating()
                            cell.mapImageView.image = snapshot.image
                            cell.mapPinImageView.hidden = false
                        })
                    }

                    //
                }
            }
        })


    }
    return cell
}



Best Answer-推荐答案


我最终使用了不同的缓存框架。 FastImageCache,让我能够以出色的滚动性能和低内存使用率实现所需的结果,因为图像不是存储在内存中而是存储在磁盘上(这就是 FastImageCache 的工作原理)。

关于ios - 具有许多图像的 UITableView 高内存使用率,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35281433/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap