滚动时隐藏UITabBar

时间:2019-03-25 16:36:18

标签: ios objective-c

我有一个UITabBarController,其中默认视图控制器是UINavigationController。我希望能够在滚动时隐藏UITabBarController的UITabBar。这是我的代码。请帮忙。谢谢

%hook UITabBar
- (id)initWithFrame:(struct CGRect)arg1 {
    %orig;
    [self setHidden: YES];
        return self;
}
%end

0 个答案:

没有答案