Skip to content

Commit 6808e12

Browse files
committed
Adds iAd framework, Adds black status bar
1 parent d6ea245 commit 6808e12

File tree

3 files changed

+15
-1
lines changed

3 files changed

+15
-1
lines changed

Classes/WebViewAppDelegate.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(
2525
navigationController.navigationBar.hidden = YES;
2626
navigationController.toolbar.barStyle = UIBarStyleBlack;
2727
WebViewController *webViewController = [[WebViewController alloc] init];
28-
webViewController.urlString = @"http://www.google.com/";
28+
webViewController.urlString = @"http://www.justinxreese.com/";
2929

3030
[navigationController pushViewController:webViewController animated:NO];
3131
[webViewController release];

WebView-Info.plist

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
<string>English</string>
77
<key>CFBundleDisplayName</key>
88
<string>${PRODUCT_NAME}</string>
9+
<key>CFBundleDocumentTypes</key>
10+
<array/>
911
<key>CFBundleExecutable</key>
1012
<string>${EXECUTABLE_NAME}</string>
1113
<key>CFBundleIconFile</key>
@@ -20,11 +22,19 @@
2022
<string>APPL</string>
2123
<key>CFBundleSignature</key>
2224
<string>????</string>
25+
<key>CFBundleURLTypes</key>
26+
<array/>
2327
<key>CFBundleVersion</key>
2428
<string>1.0</string>
2529
<key>LSRequiresIPhoneOS</key>
2630
<true/>
2731
<key>NSMainNibFile</key>
2832
<string>MainWindow</string>
33+
<key>UIStatusBarStyle</key>
34+
<string>UIStatusBarStyleBlackOpaque</string>
35+
<key>UTExportedTypeDeclarations</key>
36+
<array/>
37+
<key>UTImportedTypeDeclarations</key>
38+
<array/>
2939
</dict>
3040
</plist>

WebView.xcodeproj/project.pbxproj

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
5B1E4F2A12D9932000E21029 /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 5B1E4F2612D9932000E21029 /* [email protected] */; };
1919
5B1E4F2B12D9932000E21029 /* forwardIcon.png in Resources */ = {isa = PBXBuildFile; fileRef = 5B1E4F2712D9932000E21029 /* forwardIcon.png */; };
2020
5B1E4F2C12D9932000E21029 /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 5B1E4F2812D9932000E21029 /* [email protected] */; };
21+
D00E7F07141099640020894A /* iAd.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D00E7F06141099640020894A /* iAd.framework */; };
2122
/* End PBXBuildFile section */
2223

2324
/* Begin PBXFileReference section */
@@ -37,13 +38,15 @@
3738
5B1E4F2712D9932000E21029 /* forwardIcon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = forwardIcon.png; path = images/forwardIcon.png; sourceTree = "<group>"; };
3839
5B1E4F2812D9932000E21029 /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "[email protected]"; path = "images/[email protected]"; sourceTree = "<group>"; };
3940
8D1107310486CEB800E47090 /* WebView-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "WebView-Info.plist"; plistStructureDefinitionIdentifier = "com.apple.xcode.plist.structure-definition.iphone.info-plist"; sourceTree = "<group>"; };
41+
D00E7F06141099640020894A /* iAd.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = iAd.framework; path = System/Library/Frameworks/iAd.framework; sourceTree = SDKROOT; };
4042
/* End PBXFileReference section */
4143

4244
/* Begin PBXFrameworksBuildPhase section */
4345
1D60588F0D05DD3D006BFB54 /* Frameworks */ = {
4446
isa = PBXFrameworksBuildPhase;
4547
buildActionMask = 2147483647;
4648
files = (
49+
D00E7F07141099640020894A /* iAd.framework in Frameworks */,
4750
1D60589F0D05DD5A006BFB54 /* Foundation.framework in Frameworks */,
4851
1DF5F4E00D08C38300B7A737 /* UIKit.framework in Frameworks */,
4952
288765FD0DF74451002DB57D /* CoreGraphics.framework in Frameworks */,
@@ -75,6 +78,7 @@
7578
29B97314FDCFA39411CA2CEA /* CustomTemplate */ = {
7679
isa = PBXGroup;
7780
children = (
81+
D00E7F06141099640020894A /* iAd.framework */,
7882
080E96DDFE201D6D7F000001 /* Classes */,
7983
29B97315FDCFA39411CA2CEA /* Other Sources */,
8084
29B97317FDCFA39411CA2CEA /* Resources */,

0 commit comments

Comments
 (0)