Files
suixinkan_uikit/suixinkan/Features/TravelAlbum/OTG/Models/WiredCameraTransferHelpDocument.swift
汉秋 5f1c22c6a8 用内置有线传输帮助页替换飞书外链。
帮助文档改为应用内 WebView 加载本地 HTML,避免依赖外部平台内容。

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-16 09:06:16 +08:00

21 lines
612 B
Swift
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// 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")
}
}