Skip to content

Releases: VladK9/UIControlView

1.1.3 Fixes

17 Feb 18:54
e696025
Compare
Choose a tag to compare
  • UIScreen.main.bounds replaced with UIApplication.shared.windows.first(where: { $0.isKeyWindow })!.bounds
  • Code reduced
  • Previous update fixes

1.1.2.1 Fixes

30 Jan 08:03
8b77979
Compare
Choose a tag to compare
Update UIControlView.swift

1.1.2 Fixed incorrect presentation position

14 Jan 19:00
a45b0be
Compare
Choose a tag to compare
  • Fixed incorrect presentation position

1.1.1 Changed close button configuration

12 Jan 18:39
a4339e2
Compare
Choose a tag to compare
view.closeButton.title = "Close"
view.closeButton.tintColor = .auto
view.closeButton.backColor = .theme(light: .black, dark: .white, any: .white) // .color(.black)

1.1 Double action

12 Jan 15:22
e831b96
Compare
Choose a tag to compare

Single action

.init(item: .onlyTitle("Item with single action"), handler: { _ in
 }),

Double action

.init(item: .onlyTitle("Item with double action"),
      selectionConfig: .backWithBorder(.systemPurple), isPreselected: true,
      isSelected: { _ in
          //Selected
      }, isUnselected: { _ in
          //Unselected
      })

1.0.8 Fixed close animation

16 Oct 08:41
291a750
Compare
Choose a tag to compare

Fixed close animation

1.0.7.1 Updated Readme

15 Oct 17:33
844411f
Compare
Choose a tag to compare

Updated Readme

1.0.7 Close button now support color changes

02 Oct 06:38
c8cc8b6
Compare
Choose a tag to compare

Close button now support color changes

.theme(light: .black, dark: .white, any: .white) // Color for each theme
.color(.white) // Single color
.auto // closeTintColor depends on closeBackColor (dark or light)

1.0.6 Code reduced

30 Sep 18:44
59dccc9
Compare
Choose a tag to compare

Code reduced

1.0.5 Fixed .standard background color, Code reduced

29 Sep 16:28
af47160
Compare
Choose a tag to compare

Fixed .standard background color
Code reduced