2
0

Minor improvements.

This commit is contained in:
Maarten Billemont 2012-06-08 21:06:19 +02:00
parent 92be7f7267
commit d59f77720c

View File

@ -52,7 +52,7 @@
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation { - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
return [[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPad || interfaceOrientation != UIInterfaceOrientationPortraitUpsideDown; return interfaceOrientation != UIInterfaceOrientationPortraitUpsideDown;
} }
- (void)willAnimateRotationToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration { - (void)willAnimateRotationToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration {
@ -214,10 +214,9 @@
[TestFlight passCheckpoint:[NSString stringWithFormat:MPTestFlightCheckpointHelpChapter, chapter]]; [TestFlight passCheckpoint:[NSString stringWithFormat:MPTestFlightCheckpointHelpChapter, chapter]];
dispatch_async(dispatch_get_main_queue(), ^{ dispatch_async(dispatch_get_main_queue(), ^{
[self.helpView loadRequest: NSURL *url = [NSURL URLWithString:[@"#" stringByAppendingString:chapter]
[NSURLRequest requestWithURL: relativeToURL:[[NSBundle mainBundle] URLForResource:@"help" withExtension:@"html"]];
[NSURL URLWithString:[NSString stringWithFormat:@"#%@", chapter] relativeToURL: [self.helpView loadRequest:[NSURLRequest requestWithURL:url]];
[[NSBundle mainBundle] URLForResource:@"help" withExtension:@"html"]]]];
}); });
} }