0
我想出瞭如何使UITextField透明,但我現在需要使佔位符文本變爲白色。這可能嗎?在此先感謝您的幫助!Xcode UItextField Transparency
我想出瞭如何使UITextField透明,但我現在需要使佔位符文本變爲白色。這可能嗎?在此先感謝您的幫助!Xcode UItextField Transparency
試試這個:
UIColor *color = [UIColor whiteColor];
textField.attributedPlaceholder = [[NSAttributedString alloc] initWithString:placeholderText attributes:@{NSForegroundColorAttributeName: color}];