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.