首页 > 解决方案 > 我想知道为什么当我单击 Command + 单击文本框时,下拉菜单没有给我“嵌入按钮”选项

问题描述

我想知道为什么当我单击 Command + 单击文本框时,下拉菜单没有给我“嵌入按钮”选项

试图向您展示我正在参加的课程中,我的讲师有一个下拉菜单,他可以在其中使用“嵌入按钮”,而当我执行与他完全相同的步骤时,我没有

import SwiftUI

struct ContentView: View {

    @State var alertIsVisible: Bool = false

    var body: some View {
    VStack {
            // Target row
    HStack {
                Text("Put the bullseye as close as you can to:")
                Text(/*@START_MENU_TOKEN@*/"100"/*@END_MENU_TOKEN@*/)
            }

            // Slider Row
            HStack {
                Text("1")
                Slider(value: .constant(10))
                Text("100")
            }

            // Button row
    Button(action: {
        print("Button pressed!")
        self.alertIsVisible = true
    }) {
        Text("Hit me please!")
    }
    .alert(isPresented: $alertIsVisible) { () -> Alert in
        return Alert(title: Text("Hello there!"), message: Text("This is my first pop-up."), dismissButton: .default(Text("Awesome!")))
        }

            // Score row
        HStack {
                Text("Start Over")
            }
        }
    }
}


struct ContentView_Previews: PreviewProvider {
    static var previews: some View {

        ContentView() .previewLayout(PreviewLayout.fixed(width: 896, height: 414))
    }
                }

标签: iosswift

解决方案


推荐阅读