As you can see in the image below, the right pointing arrow is not an image, believe it or not, it's a label !!!
let triCharacter = "▶"
labelTri1.frame = CGRectMake(200,300,50,50)
labelTri1.text = triCharacter
self.view.addSubview(labelTri1)
This is the code I use, I want the right pointing arrow to like like this in a regular label, ▶ , why XCode turned this into an image? also what is the list of characters that can be converted to images? Maybe that will be in handy some day, thanks.