This repository has been archived by the owner on May 23, 2022. It is now read-only.
Releases: morizotter/SwiftyDrop
Releases · morizotter/SwiftyDrop
3.0.0: Swift 3.0
Swift 3.0
This is swift 3.0 experimental version.
2.4.1
Change deployment target to iOS8.0.
2.4.0: Actionable drops
Now SwiftyDrop can respond to user actions!
Example:
Drop.down("Message") {
print("Action fired!")
}
Thanks to @nickcharlton
2.3.0: Time ruler
Add duration
argument. Now, you can control dropdown's duration.
2.2.0: As you like
Now you can customize style as you like making type comforming to DropStatable
protocol.
Breaking Changes
- Remove
DropBlur
enum. Now you can use blur effect withDropState.Blur(UIBlurEffectStyle)
DropState.Custom(UIColor)
renamed toDropState.Color(UIColor)
Improvement
- Default font style changed from
UIFont.preferredFontForTextStyle(UIFontTextStyleHeadline)
toUIFont.systemFontOfSize(17.0)
. Your dropdown design becomes stable. - Add
DropState.Blur(UIBlurEffectStyle)
. - Clean up codes;)
2.1.0: A riot of color
- Add Custom State: You can now choose background colors you like.
2.0.0 for Swift 2.0
Swift 2.0 compatible from this version.
1.0.8
Deployment target to 8.0
1.0.7
bug fix
- Release notification appropriately.
1.0.6
bug fix
- Release remove observer in deinit.