mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-12-22 22:25:57 +00:00
Initial implementation of channel overscroll navigation
This commit is contained in:
13
submodules/ComponentFlow/Source/Utils/EscapeGuard.swift
Normal file
13
submodules/ComponentFlow/Source/Utils/EscapeGuard.swift
Normal file
@@ -0,0 +1,13 @@
|
||||
import Foundation
|
||||
|
||||
final class EscapeGuard {
|
||||
final class Status {
|
||||
fileprivate(set) var isDeallocated: Bool = false
|
||||
}
|
||||
|
||||
let status = Status()
|
||||
|
||||
deinit {
|
||||
self.status.isDeallocated = true
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user