Cách đơn giản nhất để chèn các tế bào mới cho UICollectionView mà không cần phải tải lại tất cả các tế bào của nó là bằng performBatchUpdates, có thể được thực hiện dễ dàng bằng cách làm theo các bước dưới đây.
// Lets assume you have some data coming from a NSURLConnection
[NSURLConnection sendAsynchronousRequest:request queue:[NSOperationQueue mainQueue] completionHandler:^(NSURLResponse *response, NSData *data, NSError *erro)
{
// Parse the data to Json
NSMutableArray *newJson = [NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingMutableContainers error:nil];
// Variable used to say at which position you want to add the cells
int index;
// If you want to start adding before the previous content, like new Tweets on twitter
index = 0;
// If you want to start adding after the previous content, like reading older tweets on twitter
index = self.json.count;
// Create the indexes with a loop
NSMutableArray *indexes = [NSMutableArray array];
for (int i = index; i < json.count; i++)
{
[indexes addObject:[NSIndexPath indexPathForItem:i inSection:0]];
}
// Perform the updates
[self.collectionView performBatchUpdates:^{
//Insert the new data to your current data
[self.json addObjectsFromArray:newJson];
//Inser the new cells
[self.collectionView insertItemsAtIndexPaths:indexes];
} completion:nil];
}
Nguồn
2014-08-28 21:11:02
Vì vậy, khi lần đầu tiên sử dụng '[UICollectionView reloadData]' i nên lưu chỉ mục của ô cuối cùng được sử dụng, và khi tôi gọi phương thức để thêm nhiều ô, tôi nên sử dụng ? @chris –
Bạn không cần '[UICollectionView reloadData]' nào cả khi thêm các mục. Chỉ cần làm 'insertItemsAtIndexPaths:' và đảm bảo rằng các cuộc gọi tiếp theo đến nguồn dữ liệu của bạn 'phương thức 'collectionView: numberOfItemsInSection:' và 'collectionView: cellForItemAtIndexPath:' phản ánh các thay đổi của bạn. – chris
Tôi đã làm nó lúc đầu nó làm việc. Nhưng, khi các ô mới sẽ được hiển thị trên màn hình, tôi nhận được thông báo: 'Chấm dứt ứng dụng do ngoại lệ chưa được nhận 'NSRangeException', lý do: '- [__ NSCFArray objectAtIndex:]: index (36) vượt quá giới hạn (36)' ' @chris bạn có biết tôi đã làm gì sai không? –