Hello,
I have an AutoComplete class that I found on GitHub. I expose it to Interface Builder in Xcode by adding this to my .cs file: [Register ("CustomTextBox")]. I can then drag a UITextField on my View, and seup my outlet. It works great. The AutoComplete class has a base class of UITextField.
It looks like SFAutoComplete is subclassed from UIControl. I don't want to programmatically add this control, as setting all the constraints in is kind of messy, and it's just nice to use a visual layout.
Is it possible to to layout my UITextField in Interface Builder, then assign it to be an SFAutoComplete?
Thanks...