You can see a different style in the Apple Table Programming Guide for iOS , you may need the UITableViewCellStyleSubtitle (Figure 1-7 in the guide). Please look.
You can set the second mark with cell.detailTextLabel.text = @"my text".
You need to change this line
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
to
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier] autorelease];
using the correct style: UITableViewCellStyleSubtitle.
EDIT
, :
NSString *location = @"a Location";
NSString *date = @"20m ago";
NSString *subtitle = [NSString stringWithFormat:@"%@ on %@", location, date];
2
NSString *subtitle = [NSString stringWithFormat:@"Found on location ("%f","%f") on date %@", p.x, p.y, p.date];
, / String , ..