This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Printing description of dictionaryWithValuesByKeys: | |
{ | |
DOLARC = ( | |
"IDX: DOLARC | Date: 28 | Value: 2.18", | |
"IDX: DOLARC | Date: 29 | Value: 2.18", | |
"IDX: DOLARC | Date: 30 | Value: 2.19", | |
"IDX: DOLARC | Date: 31 | Value: 2.20", | |
"IDX: DOLARC | Date: 1 | Value: 2.25", | |
"IDX: DOLARC | Date: 4 | Value: 2.24", | |
"IDX: DOLARC | Date: 5 | Value: 2.27", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//ANTES | |
DOLARC = ( | |
"IDX: DOLARC | Date: 28 | Value: 2.18", | |
"IDX: DOLARC | Date: 29 | Value: 2.18", | |
"IDX: DOLARC | Date: 30 | Value: 2.19", | |
"IDX: DOLARC | Date: 31 | Value: 2.20", | |
"IDX: DOLARC | Date: 1 | Value: 2.25", | |
"IDX: DOLARC | Date: 4 | Value: 2.24", | |
"IDX: DOLARC | Date: 5 | Value: 2.27", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#pragma mark - | |
#pragma mark UIApplication Delegate | |
- (NSUInteger)application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(UIWindow *)pWindow { | |
UITabBarController *tabCtrl = (UITabBarController *)self.window.rootViewController; | |
//Check if there's a modal view controller on screen (dismissing modal view controllers are ignored) | |
if (tabCtrl.selectedViewController.presentedViewController && !tabCtrl.selectedViewController.presentedViewController.isBeingDismissed) { | |
return tabCtrl.selectedViewController.presentedViewController.supportedInterfaceOrientations; | |
} |
NewerOlder