1

我在我的应用程序中使用 Alamofire 和 AlamofireImage 来获取数据和照片。

        Alamofire.request(.GET, URLString, encoding: .JSON)
        .authenticate(user: user, password: password)
        .responseJSON() { (response) -> Void in
          if let jsonResult = response.result.value {
            if jsonResult.count > 0 {
               ...
               let photo_url = jsonResult[index]["Photo_url"] as! String
               Alamofire.request(.GET, photo_url)
               .authenticate(user: user_photo, password: password_photo)
               .responseImage { response in
                  if let image = response.result.value
                  {
                     button.setBackgroundImage(image, forState: .Normal)
                  }
               }
            }
          }
        }

如果用户长时间使用应用程序,我会崩溃。我无法在 mac 上的 IOS 模拟器中捕捉到它,但我检查了一下,我认为手机中的内存是否完成了用户崩溃。我使用 Crashlytics 捕获崩溃,但在 Crashlytics 中看不到此崩溃。我检查了我的 Nginx 服务器中的日志(访问和错误),也没有看到任何问题和错误。

在那之后,我认为这是手机内存的问题。如果我使用 Alamofire,如何清理缓存和内存?我可以清理缓存 Alamofire 吗?

在我的 photo_url 请求之前,我尝试使用此功能并清理缓存中的图像,但我遇到了同样的崩溃:

func clearImageFromCache(url: String) {
    let URL = NSURL(string: url)!
    let URLRequest = NSURLRequest(URL: URL)

    let imageDownloader = UIImageView.af_sharedImageDownloader

    // Clear the URLRequest from the in-memory cache
    imageDownloader.imageCache?.removeImageForRequest(URLRequest, withAdditionalIdentifier: nil)

    // Clear the URLRequest from the on-disk cache
    imageDownloader.sessionManager.session.configuration.URLCache?.removeCachedResponseForRequest(URLRequest)
}
4

1 回答 1

1

快速更新:

在简单功能下使用;

func clearImageFromCache(mYourImageURL: String) {
    let URL = NSURL(string: mYourImageURL)!
    let mURLRequest = NSURLRequest(url: URL as URL)
    let urlRequest = URLRequest(url: URL as URL, cachePolicy: URLRequest.CachePolicy.reloadIgnoringLocalAndRemoteCacheData)

    let imageDownloader = UIImageView.af_sharedImageDownloader
    _ = imageDownloader.imageCache?.removeImage(for: mURLRequest as URLRequest, withIdentifier: nil)
    self.mImageView.af_setImage(withURLRequest: urlRequest, placeholderImage: UIImage(named: "placeholder"), completion: { (response) in
        self.mImageView.image = response.result.value
    })
}

// 注意:- where placeholder = your_placeholder_image_name

于 2018-05-02T11:11:17.410 回答