I have an App that has been working fine prior to iOS7, but now has issues with spaces in text of a tableview cell (style Right Detail). Some cells in the tableview have a discloser indicator and some not, so in order to align all the text to the right I have added a few extra spaces to the text in the cells that don't have disclosure indicators. See the date formatter (spaces after YYYY):
NSDateFormatter *formatter = [[NSDateFormatter alloc] init]; NSTimeZone *timeZone = [NSTimeZone timeZoneWithAbbreviation : @"UTC"]; [formatter setTimeZone:timeZone]; [formatter setDateFormat:@"dd MMM YYYY "]; // includes 4 spaces at the end for alignment NSString *dateUTC = [formatter stringFromDate:[NSDate date]]; //get todays UTC date DateCell.detailTextLabel.text = dateUTC; Will appreciate a better way that will also work in IOS7.