You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
i can print the pagedArray object content but when i do something like this pagedArray[0], the result is always nil and after debugging i get this : Array representation: [nil]
The text was updated successfully, but these errors were encountered:
Hi! That sounds weird. I cannot reproduce this issue and there are several unit test which tests this case and passes. Can you show in a few lines of code how you can reproduce this?
// Use array items
self.pagedArray?[0] -> nil although when i print the pagedArray object i can see items at index 0 // i just made those changed because the count is not true but still the same resultpublic var updatesCountWhenSettingPages: Bool = true
//
else {
// High Chaparall mode, array can change in size
count += elements.count-expectedSize
if page > lastPage {
count += (page-lastPage)*pageSize
}
}
`
i can print the pagedArray object content but when i do something like this pagedArray[0], the result is always nil and after debugging i get this : Array representation: [nil]
The text was updated successfully, but these errors were encountered: