0
我想比較UITextField
的背景顏色是否爲默認顏色。知道textField背景顏色是否爲默認顏色
喜歡的東西:
if ([blankField.backgroundColor isEqual:nil]
&& [colorField.backgroundColor isEqual:nil])
{
}
我想比較UITextField
的背景顏色是否爲默認顏色。知道textField背景顏色是否爲默認顏色
喜歡的東西:
if ([blankField.backgroundColor isEqual:nil]
&& [colorField.backgroundColor isEqual:nil])
{
}
你可以試着品嚐每個文本字段的一部分,並告訴它們是否彼此相同。看看這個鏈接:How does one compare one image to another to see if they are similar by a certain percentage, on the iPhone?這個鏈接講述如何比較兩張圖片,看看它們是否相似。希望這可以幫助。
http://stackoverflow.com/questions/10942239/comparing-two-uicolors-is-not-working-in-the-first-time – iDev