import Foundation /// 隐私同意状态(本地)。App Store 审核要求:首启隐私同意 + 政策可访问 + Privacy Manifest。 enum PrivacyPrefs { private static let key = "privacy_agreed_v1" static func agreed() -> Bool { UserDefaults.standard.bool(forKey: key) } static func setAgreed(_ value: Bool) { UserDefaults.standard.set(value, forKey: key) } }