3.0.0
This release closes the 3.0.0 milestone.
Breaking Changes
- Added Swift annotation names which remove
IG
prefixes from class names, C functions, and other APIs. Note, this only affects Swift clients. Robert Payne (#593)
Example:
// OLD
class MySectionController : IGListSectionController { ... }
// NEW
class MySectionController : ListSectionController { ... }
// OLD
IGListDiff([], [], .equality)
// NEW
ListDiff(oldArray: [], newArray: [], .equality)
- Updated
didSelect
delegate call inIGListSingleSectionControllerDelegate
to include object. Sherlouk (#397)
// OLD
- (void)didSelectSingleSectionController:(IGListSingleSectionController *)sectionController;
// NEW
- (void)didSelectSectionController:(IGListSingleSectionController *)sectionController
withObject:(id)object;
-
IGListUpdatingDelegate
now conforms toNSObject
, bringing it in line with other framework protocols. Adlai Holler (#435) -
Changed
hasChanges
methods inIGListIndexPathResult
andIGListIndexSetResult
to read-only properties. Bofei Zhu (#453) -
Replaced
IGListGridCollectionViewLayout
withIGListCollectionViewLayout
. Ryan Nystrom (#482, #450) -
Renamed
IGListAdapterUpdaterDelegate
method tolistAdapterUpdater:didPerformBatchUpdates:collectionView:
. Vincent Peng (#491) -
Moved section controller mutations to
IGListBatchContext
, provided as a parameter when calling-performBatchAnimated:updates:completion
on a section controller'scollectionContext
. All updates (insert, delete, reload item/section controller) must now be done inside a batch update block. Ryan Nystrom (a15ea08)
// OLD
[self.collectionContext performBatchAnimated:YES updates:^{
self.expanded = YES;
[self.collectionContext insertInSectionController:self atIndexes:[NSIndexSet indexSetWithIndex:1]];
} completion:nil];
// NEW
[self.collectionContext performBatchAnimated:YES updates:^(id<IGListBatchContext> batchContext) {
self.expanded = YES;
[batchContext insertInSectionController:self atIndexes:[NSIndexSet indexSetWithIndex:1]];
} completion:nil];
// OLD
[self.collectionContext reloadSectionController:self];
// NEW
[self.collectionContext performBatchAnimated:YES updates:^(id<IGListBatchContext> batchContext) {
[batchContext reloadSectionController:self];
} completion:nil];
-
-[IGListCollectionContext containerSize]
no longer accounts for the content inset of the collection view when returning a size. If you require that behavior, you can now use-[IGListCollectionContext insetContainerSize]
. Ryan Nystrom (623ff2a) -
IGListCollectionView
has been completely removed in favor of using plain oldUICollectionView
. See discussion at #409 for details. Jesse Squires (2284ce3) -
IGListBatchUpdateData
replaced itsNSSet
properties withNSArray
instead. Ryan Nystrom (#616) -
IGListUpdatingDelegate
now requires method-reloadItemInCollectionView:fromIndexPath:toIndexPath:
to handle reloading cells between index paths. Ryan Nystrom (#657) -
-[IGListCollectionContext sectionForSectionController:]
has been removed and replaced with theNSInteger sectionIndex
property onIGListSectionController
. Andrew Monshizadeh #671
Enhancements
-
Added an initializer on
IGListAdapter
that does not take aworkingRangeSize
and defaults it to 0. BasThomas (#686) -
Added
-[IGListAdapter visibleCellsForObject:]
API. Sherlouk (#442) -
Added
-[IGListAdapter sectionControllerForSection:]
API. Adlai-Holler (#477) -
You can now manually move items (cells) within a section controller, ex:
[self.collectionContext moveInSectionController:self fromIndex:0 toIndex:1]
. Ryan Nystrom (#418) -
Invalidate the layout of a section controller and control the transition with
UIView
animation APIs. Ryan Nystrom (#499) -
Added
-[IGListAdapter visibleIndexPathsForSectionController:]
API. Malecks (#465) -
Added
IGListBindingSectionController
which automatically binds view models to cells and animates updates at the cell level. Ryan Nystrom (#494) -
Added
IGListGenericSectionController
to take advantage of Objective-C (and Swift) generics and automatically store strongly-typed references to the object powering your section controller. Ryan Nystrom (301f147) -
Added a debug option for IGListKit that you can print to lldb via
po [IGListDebugger dump]
. Ryan Nystrom (#617)
Fixes
-
Gracefully handle a
nil
section controller returned by anIGListAdapterDataSource
. Ryan Nystrom (#488) -
Fix bug where emptyView's hidden status is not updated after the number of items is changed with
insertInSectionController:atIndexes:
or related methods. Peter Edmonston (#395) -
Fix bug where
IGListStackedSectionController
's children need to knownumberOrItems
before didUpdate is called. (#348) -
Fix bug where
-[UICollectionViewCell ig_setStackedSectionControllerIndex:]
should useOBJC_ASSOCIATION_COPY_NONATOMIC
for NSNumber. PhilCai (#424) -
Fix potential bug with suppressing animations (by passing
NO
) during-[IGListAdapter performUpdatesAnimated: completion:]
where user would see UI glitches/flashing. Jesse Squires (019c990) -
Fix bug where scroll position would be incorrect in call to
-[IGListAdapter scrollToObject:supplementaryKinds:scrollDirection:scrollPosition:animated:
with scrollDirection/scrollPosition of UICollectionViewScrollDirectionVertical/UICollectionViewScrollPositionCenteredVertically or UICollectionViewScrollDirectionHorizontal/UICollectionViewScrollPositionCenteredHorizontally and with a collection view with nonzero contentInset. David Yamnitsky (5cc0fcd) -
Fix a crash when reusing collection views between embedded
IGListAdapter
s. Ryan Nystrom (#517) -
Only collect batch updates when explicitly inside the batch update block, execute them otherwise. Fixes dropped updates. Ryan Nystrom (#494)
-
Remove objects that return
nil
diff identifiers before updating. Ryan Nystrom (af984ca) -
Fix a potential crash when a section is moved and deleted at the same time. Ryan Nystrom (#577)
-
Prevent section controllers and supplementary sources from returning negative sizes that crash
UICollectionViewFlowLayout
. Ryan Nystrom (#583) -
Add nullability annotations to a few more headers. Adlai Holler (#626)
-
Fix a crash when inserting or deleting from the same index within the same batch-update application. Ryan Nystrom (#616)
-
IGListSectionType
protocol was removed and its methods were absorted into theIGListSectionController
base class with default implementations. Ryan Nystrom (3102852) -
When setting the collection view on
IGListAdapter
, its layout is now properly invalidated. Jesse Squires (#677) -
Fixes a bug when reusing
UICollectionView
s with multipleIGListAdapter
s in an embedded environment that would accidentallynil
thecollectionView
property of another adapter. Ryan Nystrom (#721) -
Fixes a bug where maintaining a reference to a section controller but not the list adapter in an async block could lead to calling
-[IGListAdapter sectionForSectionController:]
(or checking-[IGListSectionController sectionIndex]
) and receiving an incorrect value. With the adapter check the value would be 0 because the adapter wasnil
and for the section controller property the value would be the last set index value. Andrew Monshizadeh (#709)