All Versions
10
Latest Version
Avg Release Cycle
54 days
Latest Release
2636 days ago
Changelog History
Changelog History
-
v1.1.1 Changes
April 28, 2019โก๏ธ Updated to Swift 5.0.
-
v1.1.0 Changes
December 15, 2018Source-breaking changes
Old
@objc public var defaultInitialScale: CGFloat@objc public var defaultCornerRadius: CGFloat@objc public var defaultTopOffset: CGFloat@objc public var defaultBottomOffset: CGFloat@objc public var defaultImageWidth: CGFloat@objc public var defaultAlertWidth: CGFloat@objc public var defaultImageBottomSpace: CGFloat@objc public var defaultTitleBottomSpace: CGFloat@objc public var defaultImageToMessageSpace: CGFloatNew
@objc public var initialScale: CGFloat@objc public var cornerRadius: CGFloat@objc public var topOffset: CGFloat@objc public var bottomOffset: CGFloat@objc public var imageWidth: CGFloat@objc public var alertWidth: CGFloat@objc public var imageBottomSpace: CGFloat@objc public var titleBottomSpace: CGFloat@objc public var imageToMessageSpace: CGFloat๐ Fixed
- Issue #7
What's new
- โ Added
blurStyleproperty to appearance
-
v1.0.0
November 17, 2018 -
v0.12.2 Changes
October 25, 2018โก๏ธ Updated to Swift 4.2.
-
v0.12.1 Changes
July 15, 2018๐ Fixed
- issue #4
-
v0.12.0 Changes
July 07, 2018Source-breaking changes
Old
let statusAlert = StatusAlert.instantiate( withImage: image, title: title, message: message, canBePickedOrDismissed: isPickable )New
let statusAlert = StatusAlert() statusAlert.image = image statusAlert.title = title statusAlert.message = message statusAlert.canBePickedOrDismissed = isPickable๐ Fixed
- 0๏ธโฃ
multiplePresentationsBehaviordefault value is.ignoreIfAlreadyPresentingnow
What's new
- โ Added reusing some UI elements, such as
UIImageViews,UILabels and spaceUIViews
- 0๏ธโฃ
-
v0.11.0 Changes
May 26, 2018Source-breaking changes
๐
shouldShowMultipleAlertsSimultaneouslyis now deprecated, usemultiplePresentationsBehaviorinstead.Old
StatusAlert.shouldShowMultipleAlertsSimultaneously = trueNew
StatusAlert.multiplePresentationsBehavior = .showMultiple๐ Fixed
- Memory leak (lost a
weakreference toself)
- Memory leak (lost a
-
v0.10.1 Changes
February 12, 2018- ๐ Fixed bug with appearance setup
- โ Added VoiceOver to demo apps
-
v0.10.0 Changes
January 08, 2018Source-breaking changes
StatusAlert.Appearance structure
0๏ธโฃ now has
commonproperty, used by default by all alerts.Old
StatusAlert.Appearance.contentColor = UIColor.blackNew
// contentColor was renamed to tintColorStatusAlert.Appearance.common.tintColor = UIColor.blackStatusAlert's appearance
0๏ธโฃ now can be set up with
appearanceproperty of typeStatusAlert.Appearance. By default will be userStatusAlert.Appearance.common.Old
statusAlert.contentColor = UIColor.blackNew
statusAlert.appearance.tintColor = UIColor.blackVertical position offset
no longer can be passed as associated value to enum case. Instead, offset can be passed as parameter to
showmethod.Old
statusAlert.show(withVerticalPosition: .center(offset: 8)New
statusAlert.show(withVerticalPosition: .center, offset: 8)What's new
- โ Added Objective-C support
- โ Added Swift 3.2 support
- โ Added VoiceOver support
-
v0.9.4 Changes
December 31, 2017๐ฆ Added Swift Package Manager support.