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
UITableView
delegate methods forwarding that lead to problems with expanding and collapsing operations (#154 thanks @anatols). - [fixed] Background color of the
RATreeView
in case ofRATreeView
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 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]
RATreeView
has public propertyscrollView
that exposesUIScrollView
used by theRATreeView
internally. All scroll view properties and methods previously implemented byRATreeView
class are now available in newly exposed scroll view instance. This leads to the simpler API of theRATreeView
itself 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 addUIRefreshControl
to theRATreeView
(#145).