session-ios/Signal/src/UIApplication+frontmostViewController.swift
Michael Kirk 9b2eb80392 Code review on new-features
* use page view controller
* UIPageControl instead of arrows for idiomatic swiping
* Nudge title lower
* better hit area for dismiss
* use darker blue for text
* Open privacy settings from callkit update screen
* tweak copy
* latest translations

// FREEBIE
2017-03-02 22:09:33 -05:00

20 lines
462 B
Swift

//
// Copyright (c) 2017 Open Whisper Systems. All rights reserved.
//
import Foundation
extension UIApplication {
var frontmostViewController: UIViewController? {
let window = UIApplication.shared.keyWindow
var viewController = window!.rootViewController
while viewController?.presentedViewController != nil {
viewController = viewController?.presentedViewController
}
return viewController
}
}