2012-10-04 57 views

回答

1

將TabBar的色調設置爲clearColor

[[self tabBar] setTintColor:[UIColor clearColor]]; 
+0

感謝您的回覆...它不工作... – Mani

+0

您正在使用XIB?如果您使用的是xib,然後設置色調顏色或將其設置爲 –

+0

自定義選項卡欄,請使用UITabBArController單獨創建該文件。 – Mani

1

嘗試的是,創造一個形象,並設置爲背景的ios5 =>只:

CGRect rect = CGRectMake(0, 0, 1, 1); 
    UIGraphicsBeginImageContext(rect.size); 
    CGContextRef context = UIGraphicsGetCurrentContext(); 
    CGContextSetFillColorWithColor(context, [[UIColor clearColor] colorWithAlphaComponent:0.8].CGColor); 
    CGContextFillRect(context, rect); 
    UIImage *transparentImage = UIGraphicsGetImageFromCurrentImageContext(); 
    UIGraphicsEndImageContext(); 
    [self.tabBarController.tabBar setBackgroundImage:transparentImage]; 
+0

謝謝安德烈... – Mani

+0

歡迎你 – Andrea

+0

如何使用此代碼對於UITabBar ...? – Mani