update webview app

This commit is contained in:
Jonathan Lipps
2013-02-05 02:55:29 -08:00
parent 5cb75062db
commit d2847373a0
3 changed files with 4 additions and 2 deletions

1
.gitignore vendored
View File

@@ -3,6 +3,7 @@ node_modules
*.trace
xcuserdata
sample-code/apps/TestApp/build
sample-code/apps/WebViewApp/build
*.sublime-*
sample-code/apps/UICatalog*
sample-code/examples/php/composer.lock

View File

@@ -241,7 +241,7 @@
IPHONEOS_DEPLOYMENT_TARGET = 6.1;
ONLY_ACTIVE_ARCH = YES;
SDKROOT = iphoneos;
TARGETED_DEVICE_FAMILY = "1,2";
TARGETED_DEVICE_FAMILY = 1;
};
name = Debug;
};
@@ -266,7 +266,7 @@
IPHONEOS_DEPLOYMENT_TARGET = 6.1;
OTHER_CFLAGS = "-DNS_BLOCK_ASSERTIONS=1";
SDKROOT = iphoneos;
TARGETED_DEVICE_FAMILY = "1,2";
TARGETED_DEVICE_FAMILY = 1;
VALIDATE_PRODUCT = YES;
};
name = Release;

View File

@@ -20,6 +20,7 @@
self.urlField.delegate = self;
// Do any additional setup after loading the view, typically from a nib.
[self.mainWebView loadRequest:[NSURLRequest requestWithURL: [NSURL URLWithString: @"http://saucelabs.com/test/guinea-pig"]]];
self.urlField.text = @"http://saucelabs.com/test/guinea-pig";
}
- (void)didReceiveMemoryWarning