Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| e6fa4e47fa | |||
| 8adb9893ee | |||
| e2051d8e9e | |||
| 8e20c717a0 |
@@ -15,7 +15,7 @@
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>FMWK</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>1.0</string>
|
||||
<string>1.0.1</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleVersion</key>
|
||||
|
||||
+1
-1
@@ -1,7 +1,7 @@
|
||||
Pod::Spec.new do |s|
|
||||
s.name = 'YYImage'
|
||||
s.summary = 'Image framework for iOS to display/encode/decode animated WebP, APNG, GIF, and more.'
|
||||
s.version = '1.0'
|
||||
s.version = '1.0.1'
|
||||
s.license = { :type => 'MIT', :file => 'LICENSE' }
|
||||
s.authors = { 'ibireme' => 'ibireme@gmail.com' }
|
||||
s.social_media_url = 'http://blog.ibireme.com'
|
||||
|
||||
@@ -620,7 +620,7 @@ typedef NS_ENUM(NSUInteger, YYAnimatedImageType) {
|
||||
_runloopMode = runloopMode.copy;
|
||||
}
|
||||
|
||||
#pragma mark - Overrice NSObject(NSKeyValueObservingCustomization)
|
||||
#pragma mark - Override NSObject(NSKeyValueObservingCustomization)
|
||||
|
||||
+ (BOOL)automaticallyNotifiesObserversForKey:(NSString *)key {
|
||||
if ([key isEqualToString:@"currentAnimatedImageIndex"]) {
|
||||
|
||||
@@ -1530,6 +1530,7 @@ CGImageRef YYCGImageCreateWithWebPData(CFDataRef webpData,
|
||||
if (_webpSource) WebPDemuxDelete(_webpSource);
|
||||
#endif
|
||||
if (_blendCanvas) CFRelease(_blendCanvas);
|
||||
pthread_mutex_destroy(&_lock);
|
||||
}
|
||||
|
||||
+ (instancetype)decoderWithData:(NSData *)data scale:(CGFloat)scale {
|
||||
|
||||
Reference in New Issue
Block a user