hide wechat moment

1.Tweak.xm

%hook FindFriendEntryViewController
-(int)tableView:(id)view numberOfRowsInSection:(int)section {
  if (section == 0 || section == 2 || section == 3) {
    return 0;
  } else if (section == 1) {
    return 1;
  }
  return %orig;
}
%end

2.Makefile

THEOS_DEVICE_IP = localhost
THEOS_DEVICE_PORT = 2223

ARCHS = arm64

include /opt/theos/makefiles/common.mk

TWEAK_NAME = wechatplugin
wechatplugin_FILES = Tweak.xm

include /opt/theos/makefiles/tweak.mk

after-install::
    install.exec "killall -9 WeChat"

3.effect

hide wechat moment effect

4. Postscript

any problem can comment below, I will response you.

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容