标签: ios objective-c
我有一个UITabBarController,其中默认视图控制器是UINavigationController。我希望能够在滚动时隐藏UITabBarController的UITabBar。这是我的代码。请帮忙。谢谢
%hook UITabBar - (id)initWithFrame:(struct CGRect)arg1 { %orig; [self setHidden: YES]; return self; } %end