Sorry for the dumb question. I have two NSStrings and I want to create a third that is the first string plus a new line plus the second string. I know this must be easy but I am banging my head looking for it.
Ultimately I want the resulting string to display correctly in a table view cell.
Regards
Dave
You best bet is to use
stringWithFormat:When putting this into a table cell, you might have to set the
numberOfLinesproperty and override the- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPathmethod.And don’t for get to release you strings when done.