What's new
- Springiness is now disabled by default, and labeled as an experimental feature in the docs. It is mostly stable, but not quite perfected. In order to opt-in, set this property to
YES
:
- (void)viewDidAppear:(BOOL)animated
{
[super viewDidAppear:animated];
self.collectionView.collectionViewLayout.springinessEnabled = YES;
}
- Better KVO handling, no longer hits the exception breakpoint. (#285)
- Showing the
typingIndicator
footer andloadEarlierMessages
header now display reliably. However, some minor UI issues still sometimes occur ifspringiness
is enabled. - When setting
self.showTypingIndicator = YES
, you now need to scroll to the bottom yourself, usingscrollToBottomAnimated:
- Lots of other bug fixes and improvements! (see below)
- Docs updated for changes