• 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
  • Proper file header copyright
    13cfa24c
    by Bogdan Poplauschi
    2016-06-13 09:14:02 +0300  
    Browse Files
NSImage+WebCache.h 389 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
/*
 * This file is part of the SDWebImage package.
 * (c) Olivier Poitrey <rs@dailymotion.com>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

#import "SDWebImageCompat.h"

#if SD_MAC

#import <Cocoa/Cocoa.h>

@interface NSImage (WebCache)

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

@end

#endif