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
{{ message }}
This repository has been archived by the owner on Nov 29, 2022. It is now read-only.
It's a great library and it works fine in a few days ago.
But today when i test my APP and found that 'reloadEmptyDataSet' doesn't make anything happen.
Pod code is pod DZNEmptyDataSet
_status = myStatus;
_emptyDescription = description;
switch (_status) {
case SSTableViewEmptyStatus_Loading:
_statusImage = ImageNamed(@name);
_displayStatus = NO;
break;
case SSTableViewEmptyStatus_NoData:
_statusImage = ImageNamed(@name);
_displayStatus = YES;
break;
case SSTableViewEmptyStatus_Reload:
_statusImage = ImageNamed(@name);
_buttonImage = ImageNamed(@name);
_displayStatus = YES;
break;
default:
// . other status
break;
}
[self.tableView reloadEmptyDataSet];
NSLog(@"%@", self.tableView.emptyDataSetSource); // return nonnull value
NSLog(@"%@", self.tableView.emptyDataSetDelegate); // return nonnull value
NSLog(@"%@", self.tableView.emptyDataSetVisible? @"yes" : @"no"); // just return "no"
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
It's a great library and it works fine in a few days ago.
But today when i test my APP and found that 'reloadEmptyDataSet' doesn't make anything happen.
Pod code is
pod DZNEmptyDataSet
The text was updated successfully, but these errors were encountered: