• This project
    • Loading...
  • Sign in

ios / yh_sdwebimage · Files

Go to a project

GitLab

  • Go to group
  • Project
  • Activity
  • Files
  • Commits
  • Pipelines 0
  • Builds 0
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Members
  • Labels
  • Wiki
  • Forks
  • Network
  • Create a new issue
  • yh_sdwebimage
  • SDWebImage
  • NSImage+WebCache.h
  • OSX compatibility and target. (NSImage+WebCache) for UIImage compatibility ...
    4c6eb5e7
    Clarified and simplified the usage of TARGET_OS_* macros. Added SD_MAC, SD_UIKIT, SD_IOS, SD_TV, SD_WATCH.
    Updated Travis CI
    by Bogdan Poplauschi
    2016-06-12 23:23:53 +0300  
    Browse Files
NSImage+WebCache.h 298 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
//
//  NSImage+WebCache.h
//  SDWebImage
//
//  Created by Bogdan on 12/06/16.
//  Copyright © 2016 Dailymotion. All rights reserved.
//

#import "SDWebImageCompat.h"

#if SD_MAC

#import <Cocoa/Cocoa.h>

@interface NSImage (WebCache)

- (NSArray<NSImage *> *)images;
- (BOOL)isGIF;

@end

#endif