mirror of
https://github.com/lint/TFDidThatSay
synced 2025-07-04 08:36:45 +00:00
Get Apollo eye from SF Symbols if available
This commit is contained in:
@ -74,7 +74,19 @@ id apolloCommentController;
|
||||
UIImageView *prevCellImageView = MSHookIvar<UIImageView *>(prevCell, "iconImageView");
|
||||
CGSize prevImageSize = [[prevCellImageView image] size];
|
||||
|
||||
UIImage *undeleteImage = [UIImage imageWithContentsOfFile:@"/var/mobile/Library/Application Support/TFDidThatSay/eye160dark.png"];
|
||||
UIImage *undeleteImage;
|
||||
|
||||
if (@available(iOS 13.0, *)){
|
||||
|
||||
undeleteImage = [UIImage systemImageNamed:@"eye"];
|
||||
|
||||
if (!undeleteImage){
|
||||
undeleteImage = [UIImage imageWithContentsOfFile:@"/var/mobile/Library/Application Support/TFDidThatSay/eye160dark.png"];
|
||||
}
|
||||
} else {
|
||||
undeleteImage = [UIImage imageWithContentsOfFile:@"/var/mobile/Library/Application Support/TFDidThatSay/eye160dark.png"];
|
||||
}
|
||||
|
||||
CGFloat undeleteImageSizeValue = prevImageSize.width > prevImageSize.height ? prevImageSize.width : prevImageSize.height;
|
||||
|
||||
if (undeleteImageSizeValue == 0){
|
||||
|
Reference in New Issue
Block a user