Skip to content

Commit

Permalink
updated to iOS 7, hid status bar
Browse files Browse the repository at this point in the history
  • Loading branch information
Andy LaVoy committed Sep 26, 2013
1 parent f6ef8de commit 49aef62
Show file tree
Hide file tree
Showing 4 changed files with 45 additions and 0 deletions.
2 changes: 2 additions & 0 deletions FastLight.xcodeproj/project.pbxproj
Expand Up @@ -260,6 +260,7 @@
GCC_PRECOMPILE_PREFIX_HEADER = YES; GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = "FastLight/FastLight-Prefix.pch"; GCC_PREFIX_HEADER = "FastLight/FastLight-Prefix.pch";
INFOPLIST_FILE = "FastLight/FastLight-Info.plist"; INFOPLIST_FILE = "FastLight/FastLight-Info.plist";
IPHONEOS_DEPLOYMENT_TARGET = 7.0;
PRODUCT_NAME = "$(TARGET_NAME)"; PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE = ""; PROVISIONING_PROFILE = "";
WRAPPER_EXTENSION = app; WRAPPER_EXTENSION = app;
Expand All @@ -273,6 +274,7 @@
GCC_PRECOMPILE_PREFIX_HEADER = YES; GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = "FastLight/FastLight-Prefix.pch"; GCC_PREFIX_HEADER = "FastLight/FastLight-Prefix.pch";
INFOPLIST_FILE = "FastLight/FastLight-Info.plist"; INFOPLIST_FILE = "FastLight/FastLight-Info.plist";
IPHONEOS_DEPLOYMENT_TARGET = 7.0;
PRODUCT_NAME = "$(TARGET_NAME)"; PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE = ""; PROVISIONING_PROFILE = "";
WRAPPER_EXTENSION = app; WRAPPER_EXTENSION = app;
Expand Down
@@ -0,0 +1,39 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>IDESourceControlProjectIdentifier</key>
<string>41ADE480-C7DE-456D-88F9-AE7EB8571076</string>
<key>IDESourceControlProjectName</key>
<string>FastLight</string>
<key>IDESourceControlProjectOriginsDictionary</key>
<dict>
<key>0523452E-D071-4265-93E0-75D42DB100D6</key>
<string>https://github.com/lavoy/FastLight.git</string>
</dict>
<key>IDESourceControlProjectPath</key>
<string>FastLight.xcodeproj/project.xcworkspace</string>
<key>IDESourceControlProjectRelativeInstallPathDictionary</key>
<dict>
<key>0523452E-D071-4265-93E0-75D42DB100D6</key>
<string>../..</string>
</dict>
<key>IDESourceControlProjectURL</key>
<string>https://github.com/lavoy/FastLight.git</string>
<key>IDESourceControlProjectVersion</key>
<integer>110</integer>
<key>IDESourceControlProjectWCCIdentifier</key>
<string>0523452E-D071-4265-93E0-75D42DB100D6</string>
<key>IDESourceControlProjectWCConfigurations</key>
<array>
<dict>
<key>IDESourceControlRepositoryExtensionIdentifierKey</key>
<string>public.vcs.git</string>
<key>IDESourceControlWCCIdentifierKey</key>
<string>0523452E-D071-4265-93E0-75D42DB100D6</string>
<key>IDESourceControlWCCName</key>
<string>FastLight</string>
</dict>
</array>
</dict>
</plist>
2 changes: 2 additions & 0 deletions FastLight/FLAppDelegate.m
Expand Up @@ -20,6 +20,8 @@ - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(
self.window.rootViewController = self.viewController; self.window.rootViewController = self.viewController;
[self.window makeKeyAndVisible]; [self.window makeKeyAndVisible];


[[UIApplication sharedApplication] setStatusBarHidden:YES];

return YES; return YES;
} }


Expand Down
2 changes: 2 additions & 0 deletions FastLight/FastLight-Info.plist
Expand Up @@ -67,5 +67,7 @@
<string>UIInterfaceOrientationLandscapeLeft</string> <string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string> <string>UIInterfaceOrientationLandscapeRight</string>
</array> </array>
<key>UIViewControllerBasedStatusBarAppearance</key>
<false/>
</dict> </dict>
</plist> </plist>

0 comments on commit 49aef62

Please sign in to comment.