DZNEmptyDataSet icon indicating copy to clipboard operation
DZNEmptyDataSet copied to clipboard

Manual enabling of DZNEmptyDataSet for empty tables

Open moonvader opened this issue 8 years ago • 3 comments

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?

moonvader avatar Feb 05 '17 11:02 moonvader

+1

kobeycx avatar Mar 23 '17 06:03 kobeycx

- (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 avatar Apr 05 '17 03:04 kashyapanirudhqi

@kashyapanirudhqi your answer is correct,but I do not know how to implement the specific code

WeMadeCode avatar Dec 29 '17 04:12 WeMadeCode