mirror of
https://github.com/HackPlan/AsyncDisplayKit.git
synced 2026-05-11 23:12:42 +08:00
Summary: Use NSData as key Add chunking of files Add support for Animated Images This adds support for GIF playback in ASDK. It's not currently ready for merging to public ASDK – for one the GIF decompression may make more sense in PINRemoteImage. Removed duration as it wasn't used Make cover image lazily loaded Differential Revision: https://phabricator.pinadmin.com/D82033
17 lines
340 B
Objective-C
17 lines
340 B
Objective-C
//
|
|
// main.m
|
|
// ASAnimatedImage
|
|
//
|
|
// Created by Garrett Moon on 3/22/16.
|
|
// Copyright © 2016 Facebook, Inc. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "AppDelegate.h"
|
|
|
|
int main(int argc, char * argv[]) {
|
|
@autoreleasepool {
|
|
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
|
|
}
|
|
}
|