Skip to content

1.4.1

Compare
Choose a tag to compare
@mats-claassen mats-claassen released this 25 Feb 15:40
· 699 commits to master since this release
  • SelectorRow now requires the cell among its generic values. This means it is easier to change the cell for a selector row.
  • _AlertRow and _ActionSheetRow require generic cell parameter

If you are using custom rows that inherit from SelectorRow then you might want to change them as follows (or use your custom cell):

// before
// public final class LocationRow : SelectorRow<CLLocation, MapViewController>, RowType

// now
public final class LocationRow : SelectorRow<CLLocation, MapViewController, PushSelectorCell<CLLocation>>, RowType