我正在創建一個像標籤欄一樣的視圖。爲此,我正在設置tintColor:UIView設置色調顏色
UIView *bottomTab = [[UIView alloc]initWithFrame:CGRectMake(0,SCREEN_HEIGHT-yVal-bottomBarButtonHeight,SCREEN_WIDTH,75)];
//bottomTab.backgroundColor = [UIColor blackColor];
bottomTab.tintColor = [UIColor blackColor];
[self.view addSubview:bottomTab];
[self.view bringSubviewToFront:bottomTab];
但是我無法看到視圖。但是,當我取消註釋背景顏色代碼行時,它顯示但沒有色調效果。
我該怎麼做到這一點。
[UIView的外觀] setTintColor:[的UIColor綠彩]; – Rushabh 2014-11-06 10:42:49
如何設置視圖? – Nitish 2014-11-06 12:37:28