Skip to content

Releases: Augustyniak/RATreeView

v2.1.1

31 Aug 18:26
Compare
Choose a tag to compare

This release is intended for use with Xcode 7.3.1.

  • [fixed] Crash in Swift example project (#185 thanks @maheshcs039).
  • [added] support for tvOS (#186).

v2.1.0

28 Nov 10:40
Compare
Choose a tag to compare

This release is intended for use with Xcode 6.3.

  • [fixed] Bug in UITableView delegate methods forwarding that lead to problems with expanding and collapsing operations (#154 thanks @anatols).
  • [fixed] Background color of the RATreeView in case of RATreeView being loaded from xib file (#151).
  • [fixed] Error caused by use of __TVOS_PROHIBITED attribute in RATreeView.h header file. Mentioned attribute was removed.
  • [fixed] Wrong name of the property declared in the RATreeView.h header file. Name itemsForVisibleCells was replaced with itemsForVisibleRows (#152).
  • [added] Nullability annotations in RATreeView.h header file (#152).

v2.0.1

28 Nov 13:08
Compare
Choose a tag to compare

This release is intended for use with Xcode 5.0.1.

  • [fixed] Changed declaration of RATreeViewDelegate protocol. It doesn't states that RATreeViewDelegate conforms to UIScrollViewDelegate protocol anymore (#148).
  • [fixed] Fixed bug that caused that batched changes led to wrong order of RATreeView modification operations (#147).

v2.0.0

28 Nov 13:09
Compare
Choose a tag to compare

This release is intended for use with Xcode 5.0.1.

  • [added] RATreeView has public property scrollView that exposes UIScrollView used by the RATreeView internally. All scroll view properties and methods previously implemented by RATreeView class are now available in newly exposed scroll view instance. This leads to the simpler API of the RATreeView itself and reduces the amount of work needed to maintain properties and methods of the scroll view that should be available for the users of RATreeView. Access to the scroll view instances gives access to some features that weren't previously possible in RATreeView. For example one can now add UIRefreshControl to the RATreeView (#145).