美文网首页
(IOS)修改tabBar的frame

(IOS)修改tabBar的frame

作者: rightmost | 来源:发表于2018-08-10 17:36 被阅读0次

       // 子类化UITabBarViewController,我这里以修改tabBar高度为例,重写viewWillLayoutSubviews方法

    #import "WZBTabBarViewController.h"

        @interfaceWZBTabBarViewController ()

        @end

        @implementationWZBTabBarViewController

        - (void)viewWillLayoutSubviews {

            CGRect tabFrame =self.tabBar.frame;

            tabFrame.size.height =100;

            tabFrame.origin.y =self.view.frame.size.height -100;

            self.tabBar.frame = tabFrame;

        }

        @end

    相关文章

      网友评论

          本文标题:(IOS)修改tabBar的frame

          本文链接:https://www.haomeiwen.com/subject/hqslbftx.html