一句話筆記,某段時間內(nèi)遇到或看到的某個可記錄的點
- 對 url 參數(shù)判斷要注意的問題
- Cache-Control
- UICollectionView dataSource is not set
一、 對 url 參數(shù)判斷要注意的問題

可以注意的判斷

問題點
二、 Cache-Control
說白了就是 在后臺有 CDN 的時候注意清理緩存
- 1、設(shè)置返回清理
cachePolicy = NSURLRequestReloadIgnoringLocalCacheData;
- 2、直接改變請求頭
[self.sessionManger.requestSerializer setValue:@"no-cache" forHTTPHeaderField:@"Cache-Control"];
三、 注意一個 防止 iOS 9 出現(xiàn) UICollectionView dataSource is not set.
- (void)dealloc {
// 防止 iOS 9 出現(xiàn) UICollectionView dataSource is not set.
[_collectionView removeFromSuperview];
}