mirror of
https://github.com/viq/NewsBlur.git
synced 2025-09-18 21:43:31 +00:00
Relative dependency path. Fixes #493.
This commit is contained in:
parent
4301738913
commit
1d60772b06
2 changed files with 10 additions and 7 deletions
|
@ -210,6 +210,9 @@
|
||||||
return YES;
|
return YES;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
- (void)viewWillAppear:(BOOL)animated {
|
||||||
|
self.title = @"All";
|
||||||
|
}
|
||||||
|
|
||||||
- (void)application:(UIApplication *)application
|
- (void)application:(UIApplication *)application
|
||||||
performFetchWithCompletionHandler:(void (^)(UIBackgroundFetchResult))completionHandler {
|
performFetchWithCompletionHandler:(void (^)(UIBackgroundFetchResult))completionHandler {
|
||||||
|
@ -1130,14 +1133,14 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
if (feedDetailView == feedDetailViewController) {
|
if (feedDetailView == feedDetailViewController) {
|
||||||
|
UIBarButtonItem *newBackButton = [[UIBarButtonItem alloc] initWithTitle: @"All"
|
||||||
|
style: UIBarButtonItemStyleBordered
|
||||||
|
target: nil
|
||||||
|
action: nil];
|
||||||
|
[feedsViewController.navigationItem setBackBarButtonItem: newBackButton];
|
||||||
if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) {
|
if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) {
|
||||||
[self.masterContainerViewController transitionToFeedDetail];
|
[self.masterContainerViewController transitionToFeedDetail];
|
||||||
} else {
|
} else {
|
||||||
UIBarButtonItem *newBackButton = [[UIBarButtonItem alloc] initWithTitle: @"All"
|
|
||||||
style: UIBarButtonItemStyleBordered
|
|
||||||
target: nil
|
|
||||||
action: nil];
|
|
||||||
[feedDetailViewController.navigationItem setBackBarButtonItem: newBackButton];
|
|
||||||
UINavigationController *navController = self.navigationController;
|
UINavigationController *navController = self.navigationController;
|
||||||
[navController pushViewController:feedDetailViewController animated:YES];
|
[navController pushViewController:feedDetailViewController animated:YES];
|
||||||
}
|
}
|
||||||
|
|
|
@ -3463,7 +3463,7 @@
|
||||||
COPY_PHASE_STRIP = NO;
|
COPY_PHASE_STRIP = NO;
|
||||||
FRAMEWORK_SEARCH_PATHS = (
|
FRAMEWORK_SEARCH_PATHS = (
|
||||||
"$(inherited)",
|
"$(inherited)",
|
||||||
"/Users/sclay/projects/newsblur/clients/ios/Other\\ Sources/Overshare\\ Kit/Dependencies/GooglePlus-SDK",
|
"\"Other Sources/Overshare Kit/Dependencies/GooglePlus-SDK/\"",
|
||||||
);
|
);
|
||||||
GCC_DYNAMIC_NO_PIC = NO;
|
GCC_DYNAMIC_NO_PIC = NO;
|
||||||
GCC_OPTIMIZATION_LEVEL = 0;
|
GCC_OPTIMIZATION_LEVEL = 0;
|
||||||
|
@ -3505,7 +3505,7 @@
|
||||||
COPY_PHASE_STRIP = YES;
|
COPY_PHASE_STRIP = YES;
|
||||||
FRAMEWORK_SEARCH_PATHS = (
|
FRAMEWORK_SEARCH_PATHS = (
|
||||||
"$(inherited)",
|
"$(inherited)",
|
||||||
"/Users/sclay/projects/newsblur/clients/ios/Other\\ Sources/Overshare\\ Kit/Dependencies/GooglePlus-SDK",
|
"\"Other Sources/Overshare Kit/Dependencies/GooglePlus-SDK/\"",
|
||||||
);
|
);
|
||||||
GCC_PRECOMPILE_PREFIX_HEADER = YES;
|
GCC_PRECOMPILE_PREFIX_HEADER = YES;
|
||||||
GCC_PREFIX_HEADER = NewsBlur_Prefix.pch;
|
GCC_PREFIX_HEADER = NewsBlur_Prefix.pch;
|
||||||
|
|
Loading…
Add table
Reference in a new issue