How to save the image as string from my textView or TextField and display it in iOS swift
Solution:
In iOS you can easily set the emoji stickers to the textField because they already accepting the emoji in textfileds.
Follow the below steps to easily set the home emoji to your textfield.
1) First you have to convert that image to string.Its not a big problem.Just you have to set it between "".That's it.
2)If you had a textfield named nameTF then you just set the emoji as below
nameTF.text = "🏠"
In iOS you can easily set the emoji stickers to the textField because they already accepting the emoji in textfileds.
Follow the below steps to easily set the home emoji to your textfield.
1) First you have to convert that image to string.Its not a big problem.Just you have to set it between "".That's it.
2)If you had a textfield named nameTF then you just set the emoji as below
nameTF.text = "🏠"
Comments
Post a Comment