license: Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the “License”); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
Beginning with Cordova 1.4, you can use Cordova as a component in your iOS applications. This component is code-named “Cleaver”.
New Cordova-based applications created using the Xcode template provided in Cordova 1.4 or greater use Cleaver, and this template is considered the reference implementation for Cleaver.
Beginning with Cordova 2.0.0, we only support the sub-project based Cleaver implementation from now on.
Cordova.plist fileInstall Cordova
Copy the Cordova.plist file into your project folder on disk
Drag and drop the Cordova.plist file into the Project Navigator of Xcode
Choose the radio-button “Create groups for any added folders”
Press the key combination Option-Command-A, which should drop down a sheet to add files to your project (the “Add Files...” sheet). Make sure the “Created groups for any added folders” radio-button is selected
Press the key combination Shift-Command-G, which should drop down another sheet for you to go to a folder (the “Go to the folder:” sheet)
Enter ~/Documents/CordovaLib/ in the “Go to the folder:” sheet and then press the “Go” button
Select the VERSION file in the the “Add Files...” sheet
Press the “Add” button in the “Add Files...” sheet
Press the key combination Option-Command-A, which should drop down a sheet to add files to your project (the “Add Files...” sheet). Make sure the “Created groups for any added folders” radio-button is selected
Press the key combination Shift-Command-G, which should drop down another sheet for you to go to a folder (the “Go to the folder:” sheet)
Enter ~/Documents/CordovaLib/CordovaLib.xcodeproj in the “Go to the folder:” sheet and then press the “Go” button
Press the “Add” button in the “Add Files...” sheet
Select CordovaLib.xcodeproj in the Project Navigator
Press the key combination Option-Command-1 to show the File Inspector
Choose “Relative to CORDOVALIB” in the File Inspector for the drop-down menu for Location
Click on the project icon in the Project Navigator, select your Project, then select the “Build Settings” tab
Add -all_load and -Obj-C - for the “Other Linker Flags” value
Click on the project icon in the Project Navigator, select your Target, then select the “Build Phases” tab
Expand “Link Binaries with Libraries”
Click on the “+” button, and add these frameworks (and optionally in the Project Navigator, move them under the Frameworks group):
AddressBook.framework AddressBookUI.framework AudioToolbox.framework AVFoundation.framework CoreLocation.framework MediaPlayer.framework QuartzCore.framework SystemConfiguration.framework MobileCoreServices.framework CoreMedia.framework
Expand “Target Dependencies” - the top box labeled like this if you have multiple boxes!
Click on the “+” button, and add the CordovaLib build product
Expand “Link Binaries with Libraries” - the top box labeled like this if you have multiple boxes!
Click on the “+” button, and add libCordova.a
Add this header:
#import <Cordova/CDVViewController.h>
Instantiate a new CDVViewController, and retain it somewhere:
CDVViewController* viewController = [CDVViewController new];
(OPTIONAL) Set the wwwFolderName property (defaults to "www"):
viewController.wwwFolderName = @"myfolder";
(OPTIONAL) Set the startPage property (defaults to "index.html"):
viewController.startPage = @"mystartpage.html";
(OPTIONAL) Set the useSplashScreen property (defaults to NO):
viewController.useSplashScreen = YES;
Set the view frame (always set this as the last property):
viewController.view.frame = CGRectMake(0, 0, 320, 480);
Add Cleaver to your view:
[myView addSubview:viewController.view];
Create a new folder in your project on disk, for example, name it www
Put your HTML, CSS and JavaScript assets into this folder
Drag and drop the folder into the Project Navigator of Xcode
Choose the radio-button “Create folder references for any added folders”
Set the appropriate wwwFolderName and startPage properties for the folder you created in (1) or use the defaults (see previous section) when you instantiate the CDVViewController.
/* if you created a folder called 'myfolder' and you want the file 'mypage.html' in it to be the startPage */ viewController.wwwFolderName = @"myfolder"; viewController.startPage = @"mypage.html"