我将搜索栏的RGB设置为0,16,97,以获得海军蓝色,但是由于某种原因,我得到了水蓝色。
searchController.searchBar.isTranslucent = false
searchController.searchBar.backgroundColor = UIColor(red: 0, green: 16, blue: 97, alpha: 1)
答案 0 :(得分:0)
您需要将所有值除以255。请尝试以下操作:
searchController.searchBar.isTranslucent = false
searchController.searchBar.backgroundColor = UIColor(red: 0 / 255, green: 16 / 255, blue: 97 / 255, alpha: 1)
希望这会有所帮助!