Post

Replies

Boosts

Views

Activity

Reply to SwiftUI EditButton problem in Xcode 12 beta
I still encounter the same issue under Version 12.0.1 of Xcode. I'm running the app on a iPhone 11 directly that is under iOS 14.0.1.     @Binding var cookingSteps: [CookingStep]     var body: some View {         NavigationView{             Form {                 Section(header: Text("Steps")) {                         ForEach(cookingSteps) { step in                             CookingStepRowListView(cookingStep: step)                         }                             .onDelete(perform: removeRows)                             .onMove(perform: moveRows)                     }                 }             }             .navigationBarItems(trailing:                     EditButton()             )         }     }
Oct ’20