Possible Duplicate:
StackOverflow code snippet horizontal scrolling broken IN CHROME
I've been posting almost daily to Stackoverflow for 6 months now without a problem. Today, I suddenly find myself unable to post properly formated code. Instead of displaying with a horizontal scroll, code wraps like a blockquote. I've made no system changes, browser upgrades etc between yesterday and today.
I tested it with three different browsers: Fluid 0.9.6 , Safari 4.0.5 (6531.22.7) and Chrome 5.0.307.11 beta (for Mac) for Mac. I'm running MacOS 10.6.2:
Safari 4.0.5 (6531.22.7) test:
- (NSMutableArray *) orderedComponents{
NSSortDescriptor *orderSort=[[NSSortDescriptor alloc] initWithKey:[ComponentToLabelMO order_Key]
ascending:YES];
//------------------------------------------------------^
NSArray *sorted=[[[self components] allObjects] sortedArrayUsingDescriptors:[NSArray arrayWithObject:orderSort]];
self.orderedComponents=[[NSMutableArray alloc] initWithArray:sorted]; //use self.property= to handle retention
return orderedComponents;
}
Dang, same problem.
More ordinary format
- (NSMutableArray *) orderedComponents{
NSSortDescriptor *orderSort=[[NSSortDescriptor alloc] initWithKey:[ComponentToLabelMO order_Key] ascending:YES];
NSArray *sorted=[[[self components] allObjects] sortedArrayUsingDescriptors:[NSArray arrayWithObject:orderSort]];
self.orderedComponents=[[NSMutableArray alloc] initWithArray:sorted]; //use self.property= to handle retention
return orderedComponents;
}
Chrome 5.0.307.11 beta (for Mac)
- (NSMutableArray *) orderedComponents{
NSSortDescriptor *orderSort=[[NSSortDescriptor alloc] initWithKey:[ComponentToLabelMO order_Key] ascending:YES];
NSArray *sorted=[[[self components] allObjects] sortedArrayUsingDescriptors:[NSArray arrayWithObject:orderSort]];
self.orderedComponents=[[NSMutableArray alloc] initWithArray:sorted]; //use self.property= to handle retention
return orderedComponents;
}
Same browser:
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
FirstLevelZeroTVC *flz;
FirstLevelOneTVC *flo;
FirstLevelTwo *flt;
switch (indexPath.row) {
case 0:
flz=[[FirstLevelZeroTVC alloc] initWithStyle:UITableViewStylePlain];
[self.appDelegate.navigationController pushViewController:flz animated:self.shouldShowAnimation];
break;
case 1:
flo=[[FirstLevelOneTVC alloc] initWithStyle:UITableViewStylePlain];
[self.appDelegate.navigationController pushViewController:flo animated:self.shouldShowAnimation];
break;
case 2:
flt=[[FirstLevelTwo alloc] initWithStyle:UITableViewStylePlain];
[self.appDelegate.navigationController pushViewController:flt animated:self.shouldShowAnimation];
break;
default:
break;
}
}
Here's a screenshot of what I see.
What I'm seeing might be similar that reported in this question.
Anyone else seen this problem?