Skip to content

Option to have light/dark statusBarStyle with PMAlertController #94

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 21 additions & 2 deletions Library/PMAlertController.swift
Original file line number Diff line number Diff line change
@@ -13,6 +13,11 @@ import UIKit
case walkthrough //The alert will adopt a width of the screen size minus 18 (from the left and right side). This style is designed to accommodate localization, push notifications and more.
}

@objc public enum PMAlertControllerPreferredStatusBarStyle: Int {
case light
case normal
}

@objc open class PMAlertController: UIViewController {

// MARK: Properties
@@ -41,6 +46,20 @@ import UIKit

open var textFields: [UITextField] = []

var statusStyle: PMAlertControllerPreferredStatusBarStyle = .normal {
didSet {
self.setNeedsStatusBarAppearanceUpdate()
}
}
open override var preferredStatusBarStyle: UIStatusBarStyle {
switch statusStyle {
case .normal:
return UIStatusBarStyle.default
case .light:
return UIStatusBarStyle.lightContent
}
}

@objc open var gravityDismissAnimation = true
@objc open var dismissWithBackgroudTouch = false // enable touch background to dismiss. Off by default.

@@ -60,11 +79,11 @@ import UIKit


//MARK: - Initialiser
@objc public convenience init(title: String?, description: String?, image: UIImage?, style: PMAlertControllerStyle) {
@objc public convenience init(title: String?, description: String?, image: UIImage?, style: PMAlertControllerStyle, statusBarStyle: PMAlertControllerPreferredStatusBarStyle) {
self.init()
guard let nib = loadNibAlertController(), let unwrappedView = nib[0] as? UIView else { return }
self.view = unwrappedView

self.statusStyle = statusBarStyle
self.modalPresentationStyle = UIModalPresentationStyle.overCurrentContext
self.modalTransitionStyle = UIModalTransitionStyle.crossDissolve