• 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
  • UIImage+MultiFormat.h
  • Refactor GIF support ...
    1dbb79f9
    Remove GIF specific code from main source, isolate it in a UIImage category to ease future addition of format support
    by Olivier Poitrey
    2013-06-07 19:39:07 +0200  
    Browse Files
UIImage+MultiFormat.h 263 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
//
//  UIImage+MultiFormat.h
//  SDWebImage
//
//  Created by Olivier Poitrey on 07/06/13.
//  Copyright (c) 2013 Dailymotion. All rights reserved.
//

#import <UIKit/UIKit.h>

@interface UIImage (MultiFormat)

+ (UIImage *)sd_imageWithData:(NSData *)data;

@end