diff --git a/SCLAlertView/SCLAlertView.swift b/SCLAlertView/SCLAlertView.swift index 4b5e6b2..801c323 100644 --- a/SCLAlertView/SCLAlertView.swift +++ b/SCLAlertView/SCLAlertView.swift @@ -150,7 +150,6 @@ public class SCLAlertView: UIViewController { // UI Colour var viewColor = UIColor() - var pressBrightnessFactor = 0.85 // UI Options public var showCloseButton = true @@ -159,6 +158,7 @@ public class SCLAlertView: UIViewController { public var contentViewCornerRadius : CGFloat = 5.0 public var fieldCornerRadius : CGFloat = 3.0 public var buttonCornerRadius : CGFloat = 3.0 + public var iconTintColor: UIColor? public var customSubview : UIView? diff --git a/SCLAlertViewTests/SCLAlertViewPropertiesTests.swift b/SCLAlertViewTests/SCLAlertViewPropertiesTests.swift index 64df95a..6fcd1df 100644 --- a/SCLAlertViewTests/SCLAlertViewPropertiesTests.swift +++ b/SCLAlertViewTests/SCLAlertViewPropertiesTests.swift @@ -86,10 +86,6 @@ class SCLAlertViewPropertiesTests: XCTestCase { XCTAssertTrue(alert.viewColor.isKindOfClass(UIColor.self)) } - func testSCLAlertViewPressBrightnessFactor() { - XCTAssertTrue(alert.pressBrightnessFactor == 0.85) - } - func testSCLAlertViewShowCloseButton() { XCTAssertTrue(alert.showCloseButton == true) }