Releases: Augustyniak/RATreeView
Releases · Augustyniak/RATreeView
v2.1.1
v2.1.0
This release is intended for use with Xcode 6.3.
- [fixed] Bug in
UITableViewdelegate methods forwarding that lead to problems with expanding and collapsing operations (#154 thanks @anatols). - [fixed] Background color of the
RATreeViewin case ofRATreeViewbeing loaded from xib file (#151). - [fixed] Error caused by use of
__TVOS_PROHIBITEDattribute in RATreeView.h header file. Mentioned attribute was removed. - [fixed] Wrong name of the property declared in the RATreeView.h header file. Name
itemsForVisibleCellswas replaced withitemsForVisibleRows(#152). - [added] Nullability annotations in RATreeView.h header file (#152).
v2.0.1
This release is intended for use with Xcode 5.0.1.
v2.0.0
This release is intended for use with Xcode 5.0.1.
- [added]
RATreeViewhas public propertyscrollViewthat exposesUIScrollViewused by theRATreeViewinternally. All scroll view properties and methods previously implemented byRATreeViewclass are now available in newly exposed scroll view instance. This leads to the simpler API of theRATreeViewitself and reduces the amount of work needed to maintain properties and methods of the scroll view that should be available for the users ofRATreeView. Access to the scroll view instances gives access to some features that weren't previously possible inRATreeView. For example one can now addUIRefreshControlto theRATreeView(#145).