• New Pull Request Checklist
    
     I have read and understood the CONTRIBUTING guide
    
     I have read the Documentation
    
     I have searched for a similar pull request in the project and found none
    
     I have updated this branch with the latest master to avoid conflicts (via merge from master or rebase)
    
     I have added the required tests to prove the fix/feature I am adding
    
     I have updated the documentation (if necessary)
    
     I have run the tests and they pass
    
     I have run the lint and it passes (pod lib lint)
    
    This merge request fixes / reffers to the following issues: ...
    
    Pull Request Description
    
    ####Description
    There are some problems in this description
    
    Or using marco like SDWebImageCompat avoid deadlocks
    
    #ifndef dispatch_queue_sync_safe
    #define dispatch_queue_sync_safe(queue, block)\
    if (strcmp(dispatch_queue_get_label(DISPATCH_CURRENT_QUEUE_LABEL), dispatch_queue_get_label(queue)) == 0) {\
    block();\
    } else {\
    dispatch_sync(queue, block);\
    }
    #endif
    by plokijuhhb
     
    Browse Files











  • # Conflicts:
    #	SDWebImage/MKAnnotationView+WebCache.h
    #	SDWebImage/MKAnnotationView+WebCache.m
    #	SDWebImage/SDImageCache.h
    #	SDWebImage/SDImageCache.m
    #	SDWebImage/SDWebImageManager.h
    #	SDWebImage/SDWebImageManager.m
    #	SDWebImage/UIButton+WebCache.h
    #	SDWebImage/UIButton+WebCache.m
    #	SDWebImage/UIImageView+HighlightedWebCache.h
    #	SDWebImage/UIImageView+HighlightedWebCache.m
    #	SDWebImage/UIImageView+WebCache.h
    #	SDWebImage/UIImageView+WebCache.m
    by Bogdan Poplauschi
     
    Browse Files
  • …25. Decided to make explicit nullable and nonnull and not use NS_ASSUME_NONNULL_BEGIN so everything is clearer when read. Done so in the implementation files as well
    by Bogdan Poplauschi
     
    Browse File »