DZNEmptyDataSet icon indicating copy to clipboard operation
DZNEmptyDataSet copied to clipboard

A drop-in UITableView/UICollectionView superclass category for showing empty datasets whenever the view has no content to display

Results 100 DZNEmptyDataSet issues
Sort by recently updated
recently updated
newest added

Hello! As it says in the title I am using this great library with a UICollection view. I tried to follow the `Colors` example, [,](https://github.com/dzenbot/DZNEmptyDataSet/blob/master/Examples/Colors/Colors/CollectionViewController.m) but I could not adapt...

I tried to use the emptyDataSet in WKWebView.scrollView. This doesn't work properly. I'm setting the dataSource/ delegate and implementing my custom `func customViewForEmptyDataSet(scrollView: UIScrollView!) -> UIView!` when first using this,...

Instead of being limited to customizing your button with a background image, plus either an image or title, this change optionally provides implementers with the opportunity to fully customize the...

How can I achieve Empty State being presented after data is finished loading? At the moment, the Empty state is presented for a split second before the data is fetched...

Hello. So I was testing this library, which everyone talks so good about and I've ran into an issue with it. In my app, after fetching some data I call...

use customView, DZN-_contentView's frame = (0,0,0,0)

In the method:**swizzleIfPossible**, there is a variable name definition error that will be misleading. ``` IMP dzn_newImplementation = method_setImplementation(method, (IMP)dzn_original_implementation) ``` According to the method method_setImplementation definition: ``` /**   *...

I use the version 1.8.1 and below is my code: `- (UIView *)customViewForEmptyDataSet:(UIScrollView *)scrollView{ UIView * view = [[UIView alloc]initWithFrame:CGRectMake(0, 0, 100, 100)]; view.backgroundColor = [UIColor redColor]; return view; }`...

If collection or tableview have a header view or something that cause inset AND empty data set requires bigger area that available, it will overlap and should allow scroll. ![Simulator...