當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Swift Never submitLabel(_:)用法及代碼示例


實例方法

submitLabel(_:)

設置此視圖的提交標簽。

聲明

func submitLabel(_ submitLabel: SubmitLabel) -> some View

參數

submitLabel

SubmitLabel 中指定的情況之一。

詳述


Form {
    TextField("Username", $viewModel.username)
        .submitLabel(.continue)
    SecureField("Password", $viewModel.password)
        .submitLabel(.done)
}

可用版本

iOS 15.0+, iPadOS 15.0+, macOS 12.0+, Mac Catalyst 15.0+, tvOS 15.0+, watchOS 8.0+

相關用法


注:本文由純淨天空篩選整理自apple.com大神的英文原創作品 Never submitLabel(_:)。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。