Skip to content
New issue

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 #269

Open
liuxiaobai710189615 opened this issue Mar 8, 2023 · 0 comments
Open

FLAnimatedImage #269

liuxiaobai710189615 opened this issue Mar 8, 2023 · 0 comments

Comments

@liuxiaobai710189615
Copy link

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);
}
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant