I want to check the pasteboard and show an alert if it contains specific values when the view appears. I can place the code into viewDidLoad to ensure it\'s onl
viewDidLoad
You shouldn't have issues in nested view controllers with this check
extension UIViewController { var isPresentingForFirstTime: Bool { if let parent = parent { return parent.isPresentingForFirstTime } return isBeingPresented || isMovingFromParent } }