I have a string with a lot of text and I want to add a picture between this text. The SwiftUI methods don't work for me. Is it possible to do this in UIKit? I want the text and pictures to be on the same line (string or something else). The main thing is that it can be transferred to the label!
This is what I want the string to look like:
I tried this, but it gives an error
let article = "Start " + String(UIImage(named: "image")) + "End"