I am writing a geometry based app. At one point in the app, there will be a UITableView with some custom cells. These cells contain UILabels. Amid the text of some these labels, I want to insert symbols that look these two triangles: 
(source: wiley.com)
However, since I cannot find these symbols in any Apple fonts, is there a way to insert an image into the string in place of a symbol?
Here is a (very) rough idea of what I’m going for (the actual table will not be static):

Ok, I get what you’re trying to do. The key, I think, is to just keep adding controls to your cell, calculating the width as you go along.
First, I’d suggest a data structure to hold your cell contents. A simple array will do the job. I generally do this stuff as an ivar:
Then fill this array with the text and images you want. I’m doing a single row, but you can repeat for every row you need.
And then, you need to create your cell:
This yields: