iOS full texteditor implementation example

83 Views Asked by At

I want to implement a technical editor and it on macOS i use NSTextInput and Core Text to do all the text stuff myself. But i can't find the NSTextInput equivalent on iOS? Are there examples how to avoid using WebKit or TextKit?

1

There are 1 best solutions below

2
MohyG On

In iOS if you use UITextView you can use its delegate i.e UITextViewDelegate .I think its what you looking for HERE is the Apple documentation.