I added a UITextField and I want to restrict it to only alphabets and spaces. So with the following;
let set = CharacterSet (charactersIn: "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLKMNOPQRSTUVWXYZ")
How can I do this without using delegates if possible and if possible using a method like RxSwift, RxCocoa etc .. Does anyone have a brilliant idea?