
- 在yana/Utils中新增ImageCacheManager类,提供内存和磁盘缓存功能,支持图片的异步加载和预加载。 - 更新FeedView,使用优化后的动态卡片组件OptimizedDynamicCardView,集成图片缓存,提升用户体验。 - 在yana/yana-Bridging-Header.h中引入CommonCrypto以支持MD5哈希。 - 更新FeedFeature以增加动态请求的页面大小,提升数据加载效率。 - 删除不再使用的data.txt文件,保持项目整洁。
15 lines
297 B
Objective-C
15 lines
297 B
Objective-C
//
|
|
// Use this file to import your target's public headers that you would like to expose to Swift.
|
|
//
|
|
|
|
// DES 加密相关 OC 文件
|
|
#import "DESEncrypt.h"
|
|
#import "Base64.h"
|
|
|
|
// AES 加密相关 OC 文件
|
|
#import "AESUtils.h"
|
|
|
|
// CommonCrypto for MD5 hash
|
|
#import <CommonCrypto/CommonCrypto.h>
|
|
|