We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I want to change the validate(value:String) method in RequiredRule.swift class. It should first trim all whitespaces then should check for isEmpty.
For this I want to create a String class extension like this:
extension String { func trim()->String { return self.stringByTrimmingCharactersInSet(NSCharacterSet.whitespaceCharacterSet()); } }
and then change the validate method like this:
public func validate(value: String) -> Bool { return !(value.trim().isEmpty) }
Suggest me how to do this.
The text was updated successfully, but these errors were encountered:
@sumitjain7 you should change validationText in in Validatable.swift
extension UITextView: Validatable { public var validationText: String { if let text = text { text.trim() } return "" } }
Sorry, something went wrong.
No branches or pull requests
I want to change the validate(value:String) method in RequiredRule.swift class.
It should first trim all whitespaces then should check for isEmpty.
For this I want to create a String class extension like this:
and then change the validate method like this:
public func validate(value: String) -> Bool { return !(value.trim().isEmpty) }
Suggest me how to do this.
The text was updated successfully, but these errors were encountered: