用内置有线传输帮助页替换飞书外链。

帮助文档改为应用内 WebView 加载本地 HTML,避免依赖外部平台内容。

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-07-16 09:06:16 +08:00
parent ce6de76055
commit 5f1c22c6a8
6 changed files with 284 additions and 6 deletions

View File

@ -0,0 +1,20 @@
//
// WiredCameraTransferHelpDocument.swift
// suixinkan
//
import Foundation
/// 线App HTML
enum WiredCameraTransferHelpDocument {
///
static let pageTitle = "帮助文档"
/// Bundle
static let resourceName = "WiredCameraTransferHelp"
/// URL `nil`
static func bundledURL(in bundle: Bundle = .main) -> URL? {
bundle.url(forResource: resourceName, withExtension: "html")
}
}