瀏覽代碼

Get Apollo eye from SF Symbols if available

master
lint 4 年之前
父節點
當前提交
854d525272
共有 1 個檔案被更改,包括 13 行新增1 行删除
  1. +13
    -1
      tweak/Apollo.xm

+ 13
- 1
tweak/Apollo.xm 查看文件

@@ -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){

Loading…
取消
儲存