CHIOTPField
CHIOTPField copied to clipboard
Can not set textColor and Font for Label
Can not set textColor and Font for Label
Can not set textColor and Font for Label
Solution:
// Add this code after setting up the OTP field and constraints
for (index, label) in otpField.labels.enumerated() {
label.textColor = UIColor.blue
label.font = UIFont.systemFont(ofSize: 30), weight: .bold)
}