Phase 4.B:SharePlatform 框架 + SharePanel 三选一 UI + ShareCenter 分发
按 msext gameController.m:575-597 / SharePanel.m 模式落地分享框架。
新增 Source/Share/:
- SharePlatform.swift:
* SharePlatform 协议(name / isInstalled / share async → ShareResult)
* ShareContent struct(nonisolated Sendable,6 字段 sharefriend/sharetype/
type/webpageUrl/title/desc)
* ShareResult enum (success / cancelled / notInstalled / failed)
* ShareScene enum (friend / timeline)
- SharePanel.swift:
* @MainActor UIView,半透明黑底覆盖全屏 + 底部圆角内容视图滑入
* 三按钮(微信绿 / QQ 蓝 / 抖音黑)+ label 等间距居中布局
* 已安装平台按钮高亮,未装置灰
* 点击空白区 dismiss + completion(.cancelled)
* 点击按钮 dismiss + 触发对应 SharePlatform.share + completion(result)
* 0.25s 滑入/滑出动画
* 与 msext SharePanel.m 等价行为
- ShareCenter.swift:
* sharefriend == "1" → SharePanel.show 三选一
* sharefriend == "2" → WechatShare.share scene: .timeline 朋友圈
* 与 msext gameController.m:585 行为 1:1
- WechatShare.swift:stub(Phase 4.E 等微信 SDK 接入)
- QQShare.swift:stub + canOpenURL("mqqapi://") 检测(Phase 4.C 升级
URL Scheme 真实调起)
- DouyinShare.swift:stub + canOpenURL("snssdk1128://") 检测(Phase 4.D 升级
URL Scheme + Photos)
FriendsShareHandler 升级:
- 入参解析为 ShareContent
- 调 ShareCenter.dispatch
- completion 内根据 result 触发 sharesuccess 反向 callback:
* success / cancelled → bridge.call("sharesuccess", {success:"2", type:sharefriend})
* notInstalled / failed → 不发(H5 业务期 timeout 后自行 fallback,msext 乐观策略)
ShareContent 标 nonisolated 解 Swift 6 actor 隔离(项目默认 MainActor isolation
让 struct 跨 actor 受限)。
BuildProject 通过
Plan §5 Phase 4.2 勾选
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
co-authored by
Claude Opus 4.7
parent
b071ced657
commit
2ad4563d16
@@ -0,0 +1,40 @@
|
||||
//
|
||||
// DouyinShare.swift
|
||||
// ylgamehall
|
||||
//
|
||||
// 抖音分享 SharePlatform 实现 stub(Phase 4.D 真实落地)。
|
||||
//
|
||||
// Phase 4.B 阶段为 stub(仅返回 success);
|
||||
// Phase 4.D 移植 msext DouyinShareManager.m URL Scheme + Photos 路径
|
||||
// (snssdk1128://share/video + 保存截图到相册让用户在抖音里选)。
|
||||
//
|
||||
|
||||
import UIKit
|
||||
|
||||
@MainActor
|
||||
public final class DouyinShare: SharePlatform {
|
||||
|
||||
public static let shared = DouyinShare()
|
||||
|
||||
public let name = "Douyin"
|
||||
|
||||
/// 检测抖音 app 是否安装:canOpenURL("snssdk1128://")
|
||||
public var isInstalled: Bool {
|
||||
guard let url = URL(string: "snssdk1128://") else { return false }
|
||||
return UIApplication.shared.canOpenURL(url)
|
||||
}
|
||||
|
||||
public init() {}
|
||||
|
||||
public func share(_ content: ShareContent, scene: ShareScene) async -> ShareResult {
|
||||
guard isInstalled else { return .notInstalled(platform: name) }
|
||||
// Phase 4.B 阶段 stub:返回 success,Phase 4.D 升级
|
||||
// 真实实现(Phase 4.D):
|
||||
// - type == 2 截图:UIGraphicsImageRenderer 截图 → 保存到相册(PHPhotoLibrary)
|
||||
// - type == 其他 远端图:URLSession 下载 → 保存到相册
|
||||
// - 保存后 snssdk1128://share/video 或 snssdk1128://camera 调起抖音
|
||||
// - Info.plist 加 NSPhotoLibraryAddUsageDescription
|
||||
// - 调起即视为 success
|
||||
return .success
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user