forked from shadowfacts/Tusker
during scrolling Prevents race when removing and adding cells in the willDisplay table view delegate method.
14 lines
252 B
Swift
14 lines
252 B
Swift
//
|
|
// BackgroundableViewController.swift
|
|
// Tusker
|
|
//
|
|
// Created by Shadowfacts on 10/26/20.
|
|
// Copyright © 2020 Shadowfacts. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
protocol BackgroundableViewController {
|
|
func sceneDidEnterBackground()
|
|
}
|