変数 SwiftUI | Left side of mutating operator isn’t mutable: ‘self’ is immutableの対処方法 SwiftUIでstructの変数を変更しようとした時に発生するLeft side of mutating operator isn't mutable: 'self' is immutableの対処方法を説明する。■結論 変更する変数に@Stateを付ける。 2024.07.31 変数
SwiftUI SwiftUI | Cannot assign to property: ‘self’ is immutableの対処方法 SwiftUIでstructの変数を変更しようとした時に発生するCannot assign to property: ‘self’ is immutableの対処方法を説明する。 ■結論 @Stateを付ける。このエラーはstructの変数を変更しようとした時に発生する。変更する変数には@Stateを付ける必要が有る。 2024.05.07 SwiftUI変数