I'm using ios 8 and i want to insert custom emoji icons with my custom keyboard.
How can i create my custom emoji with unicode?
Thanks for help.
I'm using ios 8 and i want to insert custom emoji icons with my custom keyboard.
How can i create my custom emoji with unicode?
Thanks for help.
No it's not possible to create custom emoji with unicode just like what Apple and Android are using. But as mentioned by Koray you can use your own images and then copy and paste it to your sender when image is tapped.
let pb = UIPasteboard.general
let data = UIImagePNGRepresentation(UIImage(named: imageName))
pb.setData(data!, forPasteboardType: kUTTypePNG as String)