当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Swift Optional popover(isPresented:attachmentAnchor:arrowEdge:content:)用法及代码示例


实例方法

popover(isPresented:attachmentAnchor:arrowEdge:content:)

当给定条件为真时显示弹出框。

声明

func popover<Content>(
    isPresented: Binding<Bool>,
    attachmentAnchor: PopoverAttachmentAnchor = .rect(.bounds),
    arrowEdge: Edge = .top,
    content: @escaping () -> Content
) -> some View where Content : View

参数

isPresented

与布尔值的绑定,该值确定是否显示从修改器的 content 闭包返回的弹出框内容。

attachmentAnchor

定义弹出框附着点的定位锚。默认值为 Anchor/Source/bounds

arrowEdge

attachmentAnchor 的边,用于定义 macOS 中弹出框箭头的位置。默认值为 Edge/top 。 iOS 忽略此参数。

content

返回弹出框内容的闭包。

详述

使用此方法显示一个弹出框,其内容是您在绑定布尔变量为 true 时提供的 SwiftUI 视图。在下面的示例中,只要用户通过按下 “Show Popover” 按钮切换 isShowingPopover 状态变量,就会显示一个弹出框:


struct PopoverExample: View {
    @State private var isShowingPopover = false


    var body: some View {
        Button("Show Popover") {
            self.isShowingPopover = true
        }
        .popover(isPresented: $isShowingPopover) {
            Text("Popover Content")
                .padding()
        }
    }
}

可用版本

iOS 13.0+, iPadOS 13.0+, macOS 10.15+, Mac Catalyst 13.0+

相关用法


注:本文由纯净天空筛选整理自apple.com大神的英文原创作品 Optional popover(isPresented:attachmentAnchor:arrowEdge:content:)。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。