ios导航栏title自定义,self.navigationItem.title

//自定义标题视图

        self.titleLabel = [[UILabel allocinitWithFrame:CGRectMake(0,020044)];

        self.titleLabel.backgroundColor = [UIColor clearColor];

        

        self.titleLabel.font = [UIFont boldSystemFontOfSize:18];

        

        self.titleLabel.textColor = [UIColor whiteColor];

        

        self.titleLabel.textAlignment = NSTextAlignmentCenter;

        self.titleLabel.text = self.titleLabel.title;

        self.navigationItem.titleView = self.titleLabel;

猜你喜欢

转载自blog.csdn.net/xtyzmnchen/article/details/78275253