forked from merlos/iOS-Open-GPX-Tracker
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCoreDataAlertView.swift
30 lines (24 loc) · 1.1 KB
/
CoreDataAlertView.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
//
// CoreDataAlertView.swift
// OpenGpxTracker
//
// Created by Vincent on 25/6/19.
//
import UIKit
/// To display Core Data alert action sheet anywhere when needed.
///
/// It should display anywhere possible, in case if a gpx file loads too long when file recovery with previous session's file is too big.
struct CoreDataAlertView {
/// shows the action sheet that prompts user on what to do with recovered data.
func showActionSheet(_ alertController: UIAlertController) {
guard let appDelegate = UIApplication.shared.delegate else { return }
guard let rootVC = appDelegate.window!?.rootViewController else { return }
if let popoverController = alertController.popoverPresentationController {
guard let view = rootVC.view else { return }
popoverController.sourceView = view
popoverController.sourceRect = CGRect(x: view.bounds.midX, y: view.bounds.midY, width: 0, height: 0)
popoverController.permittedArrowDirections = []
}
rootVC.present(alertController, animated: true, completion: nil)
}
}