Front-end
Mac
Mac
  • README
  • ScreenCaptureKit
    • API
      • SCShareableContent
        • [检索共享内容]Retrieving shareable content
        • [共享内容对象]Inspecting shareable content
        • [类型方法]Type Methods
      • Content capture[内容捕获]
        • SCStream[流]
        • SCStreamConfiguration
        • SCContentFilter
        • CSStreamDeleagate
        • SCScreenshotmanger
      • output processing [输出程序]
        • SCStreamOutput
        • SCStreamOutputType
        • SCStreamFrameInfo
        • SCFrameStatus
      • system content-sharing picker[系统内容共享选择器]
        • SCContentSharingPicker
        • SCContentSharingPickerConfiguration
        • SCContentSharingPickerMode
        • SCContentSharingPickerObserver
      • Stream errors
        • SCStreamError
  • Project
    • cut studio
  • issue
    • issue
  • 额外工具
    • Create-dmg
Powered by GitBook
On this page
  1. ScreenCaptureKit
  2. API
  3. system content-sharing picker[系统内容共享选择器]

SCContentSharingPickerMode

//  选择器的模式
@available(macOS 14.0, *)
public struct SCContentSharingPickerMode : OptionSet, @unchecked Sendable {

    public init(rawValue: UInt)

    public static var singleWindow: SCContentSharingPickerMode { get } // 单窗口
    public static var multipleWindows: SCContentSharingPickerMode { get } // 多窗口
    public static var singleApplication: SCContentSharingPickerMode { get } // 单应用
    public static var multipleApplications: SCContentSharingPickerMode { get } // 多应用
    public static var singleDisplay: SCContentSharingPickerMode { get } // 单展示器
}
PreviousSCContentSharingPickerConfigurationNextSCContentSharingPickerObserver

Last updated 1 year ago