我想从上获取数据 viewWillAppear(_:)
是否有任何等于方法或修改现有SwiftUI
也是任何改良剂viewDidDisappear(_:)
当然有
Run Code Online (Sandbox Code Playgroud)@available(iOS 13.0, OSX 10.15, tvOS 13.0, watchOS 6.0, *) extension View { /// Adds an action to perform when this view appears. /// /// - Parameter action: The action to perform. If `action` is `nil`, the /// call has no effect. /// - Returns: A view that triggers `action` when this view appears. @inlinable public func onAppear(perform action: (() -> Void)? = nil) -> some View /// Adds an action to perform when this view disappears. /// /// - Parameter action: The action to perform. If `action` is `nil`, the /// call has no effect. /// - Returns: A view that triggers `action` when this view disappears. @inlinable public func onDisappear(perform action: (() -> Void)? = nil) -> some View }
| 归档时间: |
|
| 查看次数: |
2041 次 |
| 最近记录: |