HDB-Li/LLDebugTool

my app don‘t show tabbar

didiaodanding opened this issue · 3 comments

my app don‘t show tabbar

Can you provide more information? @didiaodanding

I found the reason of this probleam , because addSubview implementation of uitabbar category. just like this:
@implementation UITabBar (Custom)

  • (void)addSubview:(UIView *)view
    {
    if (view.tag != TABBARVIEW_TAG) {
    return;
    }

    [super addSubview:view];
    }

Okey : )