我正面临与GMSPlacePickerViewController相关的问题,我试图使用google提供的GMSPlacePickerViewController多次选择位置。经过多次尝试后,我将收到“网络连接丢失”的内存警告。警报。 所以任何人都知道如何解决这个问题。
提前致谢。
答案 0 :(得分:0)
请在didReceiveMemoryWarning()方法中输入此代码
override func didReceiveMemoryWarning()
{
super.didReceiveMemoryWarning()
URLCache.shared.removeAllCachedResponses()
URLCache.shared.diskCapacity = 0
URLCache.shared.memoryCapacity = 0
self.viewMap.clear()
self.viewMap.reloadInputViews()
}