티스토리 뷰

📱 SwiftUI

DynamicViewContent

James Wetzel 2022. 6. 10. 13:24
728x90
반응형

A type of view that generates views from an underlying collection of data.

 

func onDelete(perform: Optional<(IndexSet) -> Void>) -> some DynamicViewContent
Sets the deletion action for the dynamic view.


func onInsert(of: [UTType], perform: (Int, [NSItemProvider]) -> Void) -> some DynamicViewContent
Sets the insert action for the dynamic view.

 

func onMove(perform: Optional<(IndexSet, Int) -> Void>) -> some DynamicViewContent
Sets the move action for the dynamic view.

728x90
반응형