SwiftUI
1// 2// SettingView.swift 3// Lady Go 4// 5// Created by on 2019/11/22. 6// Copyright © 2019 Taichi Arima. All rights reserved. 7// 8 9import SwiftUI 10 11struct SettingView: View { 12 var notification: Bool 13 14 var body: some View { 15 List { 16 Button(action: { 17 notification.toggle() 18 19 }) { 20 Text("通知") 21 } 22 } 23 24 } 25}
List{}の中のButton{} の中のnotification.toggle()を動作させるにはどうすればいいですか?
--やってみたこと--
notification.toggle()にselfをつけてみたのですが、selfはimmutableと出ていて、仕組みがよくわかりません。
どなたかご教授願います。
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。