We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
FLAnimatedImage
218行
应该做iOS 15判断
const BOOL isGIFData = imageSourceContainerType ? UTTypeConformsTo(imageSourceContainerType, kUTTypeGIF) : NO;
应该改成 BOOL isGIFData = NO; if (imageSourceContainerType) { if (@available(iOS 15, *)) { if ([[NSString stringWithFormat:@"%@", imageSourceContainerType] isEqualToString: [NSString stringWithFormat:@"%@",UTTypeGIF]]) { isGIFData = YES; } } else { isGIFData = UTTypeConformsTo(imageSourceContainerType, kUTTypeGIF); } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
FLAnimatedImage
218行
应该做iOS 15判断
const BOOL isGIFData = imageSourceContainerType ? UTTypeConformsTo(imageSourceContainerType, kUTTypeGIF) : NO;
应该改成
BOOL isGIFData = NO;
if (imageSourceContainerType) {
if (@available(iOS 15, *)) {
if ([[NSString stringWithFormat:@"%@", imageSourceContainerType] isEqualToString: [NSString
stringWithFormat:@"%@",UTTypeGIF]]) {
isGIFData = YES;
}
} else {
isGIFData = UTTypeConformsTo(imageSourceContainerType, kUTTypeGIF);
}
}
The text was updated successfully, but these errors were encountered: