我的SearchBar的TintColor有問題。我在導航欄和搜索欄上使用相同的RGB顏色。正如你在下面看到的,顏色是不一樣的。SearchBar TintColor no applied correct
這是我用來設置導航欄的TintColor代碼:
self.navigationController.navigationBar.tintColor = [UIColor colorWithRed:34/255.0f green:113/255.0f blue:179/255.0f alpha:1];
,這是我用來設置搜索欄的TintColor。
self.mySearchBar.tintColor = [UIColor colorWithRed:34/255.0f green:113/255.0f blue:179/255.0f alpha:1];
所以,正如你所看到的那樣,這兩條線幾乎是一樣的。關於如何獲得相同顏色的任何想法?
任何意見,非常感謝!
編輯: 我開發適用於iOS 4.0的XCode 4.3.3和我的設備上測試了iOS 5的
它可能有助於告訴我們您正在開發/測試哪個版本。 – rdurand
我使用XCode 4.3.3開發了iOS 4.0,我在iOS 5設備上進行了測試,謝謝,我編輯了我的帖子 – Marco
謝謝,這可能有助於複製這種情況。事實上,我在iOS 5.1上做了一個快速測試,看起來工作正常......你可以試用iOS 5.1+嗎? – rdurand