Quote:
Originally Posted by iOS.Lover
Is there any possible way to edit CATextLayer string with keyboard ?? because I can't find any property to directly editing of CATextLayer string ?
|
You'd have to create that behavior yourself.
CATextLayer has a string property. I haven't tried it, but you should be able to assign a new value and have it change.
As to editing the contents of CATextLayer with the keyboard, you'd have to create your own editor object that's a subclass of NSResponder. That's a pretty tall order.