I am using data from JSON but can’t get rid of tag html, ex. <p> </p> &#.#8217
I have followed all suggestion which have been posted in the forum here but it’s still not working. Please kindly help and suggest. Here are my codes
@IBOutlet weak var nameUILabel: UILabel!
var dogs:JSON? {
didSet {
self.functionFood()
}
}
func functionFood() {
self.nameUILabel.text = self.dogs?["title"].string
}
}