
主要变更: 1. 新增 EPImageUploader.swift 和 EPProgressHUD.swift,提供图片批量上传和进度显示功能。 2. 新建 EPMomentAPISwiftHelper.swift,封装动态 API 的 Swift 版本。 3. 更新 EPMomentPublishViewController,集成新上传功能并实现发布成功通知。 4. 创建多个文档,包括实施报告、检查清单和快速使用指南,详细记录功能实现和使用方法。 5. 更新 Bridging Header,确保 Swift 和 Objective-C 代码的互操作性。 此功能旨在提升用户体验,简化动态发布流程,并提供清晰的文档支持。
47 lines
1.1 KiB
Objective-C
47 lines
1.1 KiB
Objective-C
//
|
||
// YuMi-Bridging-Header.h
|
||
// YuMi
|
||
//
|
||
// Created by AI on 2025-10-09.
|
||
// Copyright © 2025 YuMi. All rights reserved.
|
||
//
|
||
// Swift/OC 混编桥接头文件
|
||
|
||
#ifndef YuMi_Bridging_Header_h
|
||
#define YuMi_Bridging_Header_h
|
||
|
||
// MARK: - Minimal Bridging Header
|
||
// 只引入 Swift 中真正需要用到的 OC 类
|
||
|
||
// MARK: - Foundation
|
||
#import <UIKit/UIKit.h>
|
||
|
||
// MARK: - New Modules (White Label)
|
||
#import "GlobalEventManager.h"
|
||
#import "EPMomentViewController.h"
|
||
#import "EPMineViewController.h"
|
||
#import "EPMomentCell.h"
|
||
#import "EPMineHeaderView.h"
|
||
|
||
// MARK: - QCloud SDK
|
||
#import <QCloudCOSXML/QCloudCOSXML.h>
|
||
|
||
// MARK: - Image Upload & Progress HUD
|
||
#import "MBProgressHUD.h"
|
||
|
||
// MARK: - API & Models
|
||
#import "Api+Moments.h"
|
||
#import "Api+Mine.h"
|
||
#import "AccountInfoStorage.h"
|
||
|
||
// MARK: - Utilities
|
||
#import "UIImage+Utils.h"
|
||
#import "NSString+Utils.h"
|
||
|
||
// 注意:
|
||
// 1. EPMomentViewController 和 EPMineViewController 直接继承 UIViewController
|
||
// 2. 不继承 BaseViewController(避免 ClientConfig → PIBaseModel 依赖链)
|
||
// 3. 其他依赖在各自的 .m 文件中 import
|
||
|
||
#endif /* YuMi_Bridging_Header_h */
|