self.tabbar 自定义高度白色背景

Posted

技术标签:

【中文标题】self.tabbar 自定义高度白色背景【英文标题】:self.tabbar custom height white background 【发布时间】:2012-10-09 08:56:06 【问题描述】:

        UIImage *TabBarFooterImage = [UIImage imageNamed:@"b_bar"];
        CGRect viewFrame = self.tabBar.frame;
        viewFrame.origin.y +=4; //the correct position of the tab bar
        viewFrame.size.height = 45; //the correct height
        self.tabBar.frame = viewFrame;
        [self.tabBar setBackgroundImage:TabBarFooterImage];

我已经为标签栏设置了一个自定义高度。标签栏上有一条白线。如何删除它?

【问题讨论】:

没有白线,是你的标签栏框架需要调整... 【参考方案1】:

这会对你有所帮助。

imgTab = [[UIImageView alloc]initWithFrame:CGRectMake(0,0,320.0,50)];
imgTab.image=[UIImage imageNamed:@"bottambar.png"];
tabBarController.tabBar.tag=10;
[tabBarController.tabBar addSubview:imgTab];

【讨论】:

根据您的意愿设置您的框架。

以上是关于self.tabbar 自定义高度白色背景的主要内容,如果未能解决你的问题,请参考以下文章

如何在 JTextPane 中的一行上设置自定义背景颜色

自定义进度栏的操作方法

自定义对话框,白色透明背景[复制]

轮播指示器未显示在幻灯片的白色背景上(自定义样式或类添加)?

如何自定义状态栏图标和文字颜色?例如。状态栏背景:白色,状态栏图标颜色,文字:红色

如何自定义 UITableView 的标题背景颜色、高度和文本?