DZNEmptyDataSet
DZNEmptyDataSet copied to clipboard
Manual enabling of DZNEmptyDataSet for empty tables
I have TableView and I want to manually enable empty state when nothing was loaded from server. How can I manually show empty state only after connecting to server and doing all necessary stuff?
+1
- (BOOL)emptyDataSetShouldDisplay:(UIScrollView *)scrollView
You can use this to decide whether you want to display the empty data set or not. Return YES only after everything is loaded from the server.
@kashyapanirudhqi your answer is correct,but I do not know how to implement the specific code