要把一个控件隐藏在navigationBar后面伺机而动怎么办

 UILabel *showLabel = [[UILabel alloc]init];

    showLabel.backgroundColor = [UIColor redColor];

    [self.navigationController.view insertSubview:showLabel belowSubview:self.navigationController.navigationBar];

你可能感兴趣的:(NavigationBar)