Skip to content
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

Allow user to turn off blur effect by using nil. #321

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Revert to master copy
Revert to master copy.
  • Loading branch information
yccheok committed Jun 29, 2021
commit 9a128013f1953424974fba5341ec1c396fbbffd1
9 changes: 0 additions & 9 deletions Example/DemoViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,6 @@ final class DemoViewController: UITableViewController {
let style = AlertControllerStyle(rawValue: self.styleControl.selectedSegmentIndex)!
let alert = AlertController(title: title, message: message, preferredStyle: style)

let visualStyle = AlertVisualStyle(alertStyle: style)
visualStyle.blurEffect = nil
if #available(iOS 13.0, *) {
visualStyle.backgroundColor = UIColor.red
} else {
// Fallback on earlier versions
}
alert.visualStyle = visualStyle

let textFields = Int(self.textFieldCountTextField.content ?? "0")!
for _ in 0..<textFields {
alert.addTextField()
Expand Down