i'm trying to implement this tweak using THEOS that calls another view on load
but i keep getting this error when i compile:
Tweak.xm:13:57: error: class method '+onLeftMenu' not found (return type
defaults to 'id') [-Werror,-Wobjc-method-access]
[_logos_static_class_lookup$FoxTubeViewController() onLeftMenu];
my code Tweak.xm file:
%hook MainViewController
- (void)viewDidLoad{
%orig;
[%c(LeftMenu) onCachedVideo];
}
%end