iOS, how can I pack reusable code in a reusable widget? How heavily modified text widget?
I built a UITextView that has many user-specific functions specific to my application (removes the web server for some special macros, has a special autocomplete dictionary, etc.)
I want to reuse this special text recording on multiple screens of my iOS application. How can I neatly pack this code so it can be easily used as simple as a UITextView can be reused?
source
share