Ifd_Mobile 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
 - data/bin/Ifd_Mobile +25 -0
 - data/bin/generate.rb +20 -0
 - data/bin/helper.rb +51 -0
 - data/lib/Ifd_Mobile.rb +1 -0
 - data/lib/Ifd_Mobile/methods/IFD_Assertion.rb +44 -0
 - data/lib/Ifd_Mobile/methods/core.rb +128 -0
 - data/lib/Ifd_Mobile/methods/lib_var.rb +54 -0
 - data/lib/Ifd_Mobile/methods/required_files.rb +18 -0
 - data/lib/Ifd_Mobile/version.rb +5 -0
 - data/project/Gemfile +7 -0
 - data/project/Gemfile.lock +182 -0
 - data/project/apps/TestApp/Default-568h@2x.png +0 -0
 - data/project/apps/TestApp/Test App 2/GestureTestViewController.h +18 -0
 - data/project/apps/TestApp/Test App 2/GestureTestViewController.m +48 -0
 - data/project/apps/TestApp/Test App 2/GestureTestViewController.xib +47 -0
 - data/project/apps/TestApp/Test App 2/MyViewControllerViewController.h +42 -0
 - data/project/apps/TestApp/Test App 2/MyViewControllerViewController.m +193 -0
 - data/project/apps/TestApp/Test App 2/TA2AppDelegate.h +28 -0
 - data/project/apps/TestApp/Test App 2/TA2AppDelegate.m +85 -0
 - data/project/apps/TestApp/Test App 2/TestApp-Info.plist +40 -0
 - data/project/apps/TestApp/Test App 2/TestApp-Prefix.pch +29 -0
 - data/project/apps/TestApp/Test App 2/en.lproj/InfoPlist.strings +21 -0
 - data/project/apps/TestApp/Test App 2/en.lproj/Localizable.strings +0 -0
 - data/project/apps/TestApp/Test App 2/en.lproj/MyViewControllerViewController.xib +175 -0
 - data/project/apps/TestApp/Test App 2/main.m +31 -0
 - data/project/apps/TestApp/TestApp.xcodeproj/project.pbxproj +336 -0
 - data/project/apps/TestApp/TestApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
 - data/project/apps/TestApp/TestApp.xcodeproj/project.xcworkspace/xcuserdata/anhpham.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
 - data/project/apps/TestApp/TestApp.xcodeproj/xcuserdata/anhpham.xcuserdatad/xcschemes/TestApp.xcscheme +88 -0
 - data/project/apps/TestApp/TestApp.xcodeproj/xcuserdata/anhpham.xcuserdatad/xcschemes/xcschememanagement.plist +22 -0
 - data/project/apps/TestApp/build/release-iphonesimulator/TestApp.app/Default-568h@2x.png +0 -0
 - data/project/apps/TestApp/build/release-iphonesimulator/TestApp.app/GestureTestViewController.nib/objects-8.0+.nib +0 -0
 - data/project/apps/TestApp/build/release-iphonesimulator/TestApp.app/GestureTestViewController.nib/objects.nib +0 -0
 - data/project/apps/TestApp/build/release-iphonesimulator/TestApp.app/GestureTestViewController.nib/runtime.nib +0 -0
 - data/project/apps/TestApp/build/release-iphonesimulator/TestApp.app/Info.plist +0 -0
 - data/project/apps/TestApp/build/release-iphonesimulator/TestApp.app/PkgInfo +1 -0
 - data/project/apps/TestApp/build/release-iphonesimulator/TestApp.app/TestApp +0 -0
 - data/project/apps/TestApp/build/release-iphonesimulator/TestApp.app/en.lproj/InfoPlist.strings +0 -0
 - data/project/apps/TestApp/build/release-iphonesimulator/TestApp.app/en.lproj/Localizable.strings +0 -0
 - data/project/apps/TestApp/build/release-iphonesimulator/TestApp.app/en.lproj/MyViewControllerViewController.nib/objects-8.0+.nib +0 -0
 - data/project/apps/TestApp/build/release-iphonesimulator/TestApp.app/en.lproj/MyViewControllerViewController.nib/objects.nib +0 -0
 - data/project/apps/TestApp/build/release-iphonesimulator/TestApp.app/en.lproj/MyViewControllerViewController.nib/runtime.nib +0 -0
 - data/project/apps/selendroid-test-app.apk +0 -0
 - data/project/features/android/Android_test.feature +10 -0
 - data/project/features/iOS/iOS_test.feature +11 -0
 - data/project/features/step_definitions/repositories/android_ob_test.rb +2 -0
 - data/project/features/step_definitions/repositories/ios_ob_test.rb +3 -0
 - data/project/features/support/env.rb +7 -0
 - data/project/features/support/hooks.rb +24 -0
 - data/project/features/support/project_env.rb +38 -0
 - metadata +155 -0
 
| 
         @@ -0,0 +1,40 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            <?xml version="1.0" encoding="UTF-8"?>
         
     | 
| 
      
 2 
     | 
    
         
            +
            <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
         
     | 
| 
      
 3 
     | 
    
         
            +
            <plist version="1.0">
         
     | 
| 
      
 4 
     | 
    
         
            +
            <dict>
         
     | 
| 
      
 5 
     | 
    
         
            +
            	<key>CFBundleDevelopmentRegion</key>
         
     | 
| 
      
 6 
     | 
    
         
            +
            	<string>en</string>
         
     | 
| 
      
 7 
     | 
    
         
            +
            	<key>CFBundleDisplayName</key>
         
     | 
| 
      
 8 
     | 
    
         
            +
            	<string>${PRODUCT_NAME}</string>
         
     | 
| 
      
 9 
     | 
    
         
            +
            	<key>CFBundleExecutable</key>
         
     | 
| 
      
 10 
     | 
    
         
            +
            	<string>${EXECUTABLE_NAME}</string>
         
     | 
| 
      
 11 
     | 
    
         
            +
            	<key>CFBundleIdentifier</key>
         
     | 
| 
      
 12 
     | 
    
         
            +
            	<string>io.appium.${PRODUCT_NAME:rfc1034identifier}</string>
         
     | 
| 
      
 13 
     | 
    
         
            +
            	<key>CFBundleInfoDictionaryVersion</key>
         
     | 
| 
      
 14 
     | 
    
         
            +
            	<string>6.0</string>
         
     | 
| 
      
 15 
     | 
    
         
            +
            	<key>CFBundleName</key>
         
     | 
| 
      
 16 
     | 
    
         
            +
            	<string>${PRODUCT_NAME}</string>
         
     | 
| 
      
 17 
     | 
    
         
            +
            	<key>CFBundlePackageType</key>
         
     | 
| 
      
 18 
     | 
    
         
            +
            	<string>APPL</string>
         
     | 
| 
      
 19 
     | 
    
         
            +
            	<key>CFBundleShortVersionString</key>
         
     | 
| 
      
 20 
     | 
    
         
            +
            	<string>1.0</string>
         
     | 
| 
      
 21 
     | 
    
         
            +
            	<key>CFBundleSignature</key>
         
     | 
| 
      
 22 
     | 
    
         
            +
            	<string>????</string>
         
     | 
| 
      
 23 
     | 
    
         
            +
            	<key>CFBundleVersion</key>
         
     | 
| 
      
 24 
     | 
    
         
            +
            	<string>1.0</string>
         
     | 
| 
      
 25 
     | 
    
         
            +
            	<key>LSRequiresIPhoneOS</key>
         
     | 
| 
      
 26 
     | 
    
         
            +
            	<true/>
         
     | 
| 
      
 27 
     | 
    
         
            +
            	<key>UIRequiredDeviceCapabilities</key>
         
     | 
| 
      
 28 
     | 
    
         
            +
            	<array>
         
     | 
| 
      
 29 
     | 
    
         
            +
            		<string>armv7</string>
         
     | 
| 
      
 30 
     | 
    
         
            +
            	</array>
         
     | 
| 
      
 31 
     | 
    
         
            +
            	<key>UIApplicationExitsOnSuspend</key>
         
     | 
| 
      
 32 
     | 
    
         
            +
            	<true/>
         
     | 
| 
      
 33 
     | 
    
         
            +
            	<key>UISupportedInterfaceOrientations</key>
         
     | 
| 
      
 34 
     | 
    
         
            +
            	<array>
         
     | 
| 
      
 35 
     | 
    
         
            +
            		<string>UIInterfaceOrientationPortrait</string>
         
     | 
| 
      
 36 
     | 
    
         
            +
            		<string>UIInterfaceOrientationLandscapeLeft</string>
         
     | 
| 
      
 37 
     | 
    
         
            +
            		<string>UIInterfaceOrientationLandscapeRight</string>
         
     | 
| 
      
 38 
     | 
    
         
            +
            	</array>
         
     | 
| 
      
 39 
     | 
    
         
            +
            </dict>
         
     | 
| 
      
 40 
     | 
    
         
            +
            </plist>
         
     | 
| 
         @@ -0,0 +1,29 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            /**
         
     | 
| 
      
 2 
     | 
    
         
            +
             *	Licensed to the Apache Software Foundation (ASF) under one
         
     | 
| 
      
 3 
     | 
    
         
            +
             *	or more contributor license agreements.  See the NOTICE file
         
     | 
| 
      
 4 
     | 
    
         
            +
             *	distributed with this work for additional information
         
     | 
| 
      
 5 
     | 
    
         
            +
             *	regarding copyright ownership.  The ASF licenses this file
         
     | 
| 
      
 6 
     | 
    
         
            +
             *	to you under the Apache License, Version 2.0 (the
         
     | 
| 
      
 7 
     | 
    
         
            +
             *	"License"); you may not use this file except in compliance
         
     | 
| 
      
 8 
     | 
    
         
            +
             *	with the License.  You may obtain a copy of the License at
         
     | 
| 
      
 9 
     | 
    
         
            +
             *
         
     | 
| 
      
 10 
     | 
    
         
            +
             *	http://www.apache.org/licenses/LICENSE-2.0
         
     | 
| 
      
 11 
     | 
    
         
            +
             *
         
     | 
| 
      
 12 
     | 
    
         
            +
             *	Unless required by applicable law or agreed to in writing,
         
     | 
| 
      
 13 
     | 
    
         
            +
             *	software distributed under the License is distributed on an
         
     | 
| 
      
 14 
     | 
    
         
            +
             *	"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
         
     | 
| 
      
 15 
     | 
    
         
            +
             *	KIND, either express or implied.  See the License for the
         
     | 
| 
      
 16 
     | 
    
         
            +
             *	specific language governing permissions and limitations
         
     | 
| 
      
 17 
     | 
    
         
            +
             *	under the License.
         
     | 
| 
      
 18 
     | 
    
         
            +
             */
         
     | 
| 
      
 19 
     | 
    
         
            +
             
     | 
| 
      
 20 
     | 
    
         
            +
            #import <Availability.h>
         
     | 
| 
      
 21 
     | 
    
         
            +
             
     | 
| 
      
 22 
     | 
    
         
            +
            #ifndef __IPHONE_3_0
         
     | 
| 
      
 23 
     | 
    
         
            +
            #warning "This project uses features only available in iOS SDK 3.0 and later."
         
     | 
| 
      
 24 
     | 
    
         
            +
            #endif
         
     | 
| 
      
 25 
     | 
    
         
            +
             
     | 
| 
      
 26 
     | 
    
         
            +
            #ifdef __OBJC__
         
     | 
| 
      
 27 
     | 
    
         
            +
            	#import <UIKit/UIKit.h>
         
     | 
| 
      
 28 
     | 
    
         
            +
            	#import <Foundation/Foundation.h>
         
     | 
| 
      
 29 
     | 
    
         
            +
            #endif
         
     | 
| 
         @@ -0,0 +1,21 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            /**
         
     | 
| 
      
 2 
     | 
    
         
            +
             *	Licensed to the Apache Software Foundation (ASF) under one
         
     | 
| 
      
 3 
     | 
    
         
            +
             *	or more contributor license agreements.  See the NOTICE file
         
     | 
| 
      
 4 
     | 
    
         
            +
             *	distributed with this work for additional information
         
     | 
| 
      
 5 
     | 
    
         
            +
             *	regarding copyright ownership.  The ASF licenses this file
         
     | 
| 
      
 6 
     | 
    
         
            +
             *	to you under the Apache License, Version 2.0 (the
         
     | 
| 
      
 7 
     | 
    
         
            +
             *	"License"); you may not use this file except in compliance
         
     | 
| 
      
 8 
     | 
    
         
            +
             *	with the License.  You may obtain a copy of the License at
         
     | 
| 
      
 9 
     | 
    
         
            +
             *
         
     | 
| 
      
 10 
     | 
    
         
            +
             *	http://www.apache.org/licenses/LICENSE-2.0
         
     | 
| 
      
 11 
     | 
    
         
            +
             *
         
     | 
| 
      
 12 
     | 
    
         
            +
             *	Unless required by applicable law or agreed to in writing,
         
     | 
| 
      
 13 
     | 
    
         
            +
             *	software distributed under the License is distributed on an
         
     | 
| 
      
 14 
     | 
    
         
            +
             *	"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
         
     | 
| 
      
 15 
     | 
    
         
            +
             *	KIND, either express or implied.  See the License for the
         
     | 
| 
      
 16 
     | 
    
         
            +
             *	specific language governing permissions and limitations
         
     | 
| 
      
 17 
     | 
    
         
            +
             *	under the License.
         
     | 
| 
      
 18 
     | 
    
         
            +
             */
         
     | 
| 
      
 19 
     | 
    
         
            +
             
     | 
| 
      
 20 
     | 
    
         
            +
            /* Localized versions of Info.plist keys */
         
     | 
| 
      
 21 
     | 
    
         
            +
             
     | 
| 
         Binary file 
     | 
| 
         @@ -0,0 +1,175 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            <?xml version="1.0" encoding="UTF-8" standalone="no"?>
         
     | 
| 
      
 2 
     | 
    
         
            +
            <document type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="3.0" toolsVersion="6250" systemVersion="13F34" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none">
         
     | 
| 
      
 3 
     | 
    
         
            +
                <dependencies>
         
     | 
| 
      
 4 
     | 
    
         
            +
                    <plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="6244"/>
         
     | 
| 
      
 5 
     | 
    
         
            +
                </dependencies>
         
     | 
| 
      
 6 
     | 
    
         
            +
                <objects>
         
     | 
| 
      
 7 
     | 
    
         
            +
                    <placeholder placeholderIdentifier="IBFilesOwner" id="-1" userLabel="File's Owner" customClass="MyViewControllerViewController">
         
     | 
| 
      
 8 
     | 
    
         
            +
                        <connections>
         
     | 
| 
      
 9 
     | 
    
         
            +
                            <outlet property="answerLabel" destination="7" id="12"/>
         
     | 
| 
      
 10 
     | 
    
         
            +
                            <outlet property="computeSumButton" destination="4" id="13"/>
         
     | 
| 
      
 11 
     | 
    
         
            +
                            <outlet property="firstArg" destination="5" id="9"/>
         
     | 
| 
      
 12 
     | 
    
         
            +
                            <outlet property="locationStatus" destination="bMw-Gn-PAX" id="gaY-Qi-5Ut"/>
         
     | 
| 
      
 13 
     | 
    
         
            +
                            <outlet property="secondArg" destination="6" id="10"/>
         
     | 
| 
      
 14 
     | 
    
         
            +
                            <outlet property="view" destination="1" id="3"/>
         
     | 
| 
      
 15 
     | 
    
         
            +
                        </connections>
         
     | 
| 
      
 16 
     | 
    
         
            +
                    </placeholder>
         
     | 
| 
      
 17 
     | 
    
         
            +
                    <placeholder placeholderIdentifier="IBFirstResponder" id="-2" customClass="UIResponder"/>
         
     | 
| 
      
 18 
     | 
    
         
            +
                    <view contentMode="scaleToFill" id="1">
         
     | 
| 
      
 19 
     | 
    
         
            +
                        <rect key="frame" x="0.0" y="0.0" width="320" height="480"/>
         
     | 
| 
      
 20 
     | 
    
         
            +
                        <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
         
     | 
| 
      
 21 
     | 
    
         
            +
                        <subviews>
         
     | 
| 
      
 22 
     | 
    
         
            +
                            <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" id="4">
         
     | 
| 
      
 23 
     | 
    
         
            +
                                <rect key="frame" x="94" y="122" width="113" height="37"/>
         
     | 
| 
      
 24 
     | 
    
         
            +
                                <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
         
     | 
| 
      
 25 
     | 
    
         
            +
                                <state key="normal" title="Compute Sum">
         
     | 
| 
      
 26 
     | 
    
         
            +
                                    <color key="titleShadowColor" white="0.5" alpha="1" colorSpace="calibratedWhite"/>
         
     | 
| 
      
 27 
     | 
    
         
            +
                                </state>
         
     | 
| 
      
 28 
     | 
    
         
            +
                                <connections>
         
     | 
| 
      
 29 
     | 
    
         
            +
                                    <action selector="computeAction:" destination="-1" eventType="touchUpInside" id="11"/>
         
     | 
| 
      
 30 
     | 
    
         
            +
                                </connections>
         
     | 
| 
      
 31 
     | 
    
         
            +
                            </button>
         
     | 
| 
      
 32 
     | 
    
         
            +
                            <textField opaque="NO" clipsSubviews="YES" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" borderStyle="roundedRect" minimumFontSize="17" id="5">
         
     | 
| 
      
 33 
     | 
    
         
            +
                                <rect key="frame" x="102" y="38" width="97" height="31"/>
         
     | 
| 
      
 34 
     | 
    
         
            +
                                <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
         
     | 
| 
      
 35 
     | 
    
         
            +
                                <accessibility key="accessibilityConfiguration" label="TextField1"/>
         
     | 
| 
      
 36 
     | 
    
         
            +
                                <fontDescription key="fontDescription" type="system" pointSize="14"/>
         
     | 
| 
      
 37 
     | 
    
         
            +
                                <textInputTraits key="textInputTraits"/>
         
     | 
| 
      
 38 
     | 
    
         
            +
                            </textField>
         
     | 
| 
      
 39 
     | 
    
         
            +
                            <textField opaque="NO" clipsSubviews="YES" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" borderStyle="roundedRect" minimumFontSize="17" id="6">
         
     | 
| 
      
 40 
     | 
    
         
            +
                                <rect key="frame" x="102" y="77" width="97" height="31"/>
         
     | 
| 
      
 41 
     | 
    
         
            +
                                <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
         
     | 
| 
      
 42 
     | 
    
         
            +
                                <accessibility key="accessibilityConfiguration" label="TextField2"/>
         
     | 
| 
      
 43 
     | 
    
         
            +
                                <fontDescription key="fontDescription" type="system" pointSize="14"/>
         
     | 
| 
      
 44 
     | 
    
         
            +
                                <textInputTraits key="textInputTraits"/>
         
     | 
| 
      
 45 
     | 
    
         
            +
                            </textField>
         
     | 
| 
      
 46 
     | 
    
         
            +
                            <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="???" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumFontSize="10" id="7">
         
     | 
| 
      
 47 
     | 
    
         
            +
                                <rect key="frame" x="129" y="167" width="42" height="21"/>
         
     | 
| 
      
 48 
     | 
    
         
            +
                                <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
         
     | 
| 
      
 49 
     | 
    
         
            +
                                <accessibility key="accessibilityConfiguration" label="SumLabel"/>
         
     | 
| 
      
 50 
     | 
    
         
            +
                                <fontDescription key="fontDescription" type="system" pointSize="17"/>
         
     | 
| 
      
 51 
     | 
    
         
            +
                                <color key="textColor" cocoaTouchSystemColor="darkTextColor"/>
         
     | 
| 
      
 52 
     | 
    
         
            +
                                <nil key="highlightedColor"/>
         
     | 
| 
      
 53 
     | 
    
         
            +
                            </label>
         
     | 
| 
      
 54 
     | 
    
         
            +
                            <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" id="16">
         
     | 
| 
      
 55 
     | 
    
         
            +
                                <rect key="frame" x="26" y="207" width="76" height="44"/>
         
     | 
| 
      
 56 
     | 
    
         
            +
                                <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
         
     | 
| 
      
 57 
     | 
    
         
            +
                                <state key="normal" title="show alert">
         
     | 
| 
      
 58 
     | 
    
         
            +
                                    <color key="titleShadowColor" white="0.5" alpha="1" colorSpace="calibratedWhite"/>
         
     | 
| 
      
 59 
     | 
    
         
            +
                                </state>
         
     | 
| 
      
 60 
     | 
    
         
            +
                                <connections>
         
     | 
| 
      
 61 
     | 
    
         
            +
                                    <action selector="showAlert:" destination="-1" eventType="touchUpInside" id="18"/>
         
     | 
| 
      
 62 
     | 
    
         
            +
                                </connections>
         
     | 
| 
      
 63 
     | 
    
         
            +
                            </button>
         
     | 
| 
      
 64 
     | 
    
         
            +
                            <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Label 1" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="19">
         
     | 
| 
      
 65 
     | 
    
         
            +
                                <rect key="frame" x="122" y="259" width="56" height="21"/>
         
     | 
| 
      
 66 
     | 
    
         
            +
                                <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
         
     | 
| 
      
 67 
     | 
    
         
            +
                                <accessibility key="accessibilityConfiguration" label="AppElem"/>
         
     | 
| 
      
 68 
     | 
    
         
            +
                                <fontDescription key="fontDescription" type="system" pointSize="17"/>
         
     | 
| 
      
 69 
     | 
    
         
            +
                                <color key="textColor" cocoaTouchSystemColor="darkTextColor"/>
         
     | 
| 
      
 70 
     | 
    
         
            +
                                <nil key="highlightedColor"/>
         
     | 
| 
      
 71 
     | 
    
         
            +
                            </label>
         
     | 
| 
      
 72 
     | 
    
         
            +
                            <slider opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" value="0.5" minValue="0.0" maxValue="1" id="20">
         
     | 
| 
      
 73 
     | 
    
         
            +
                                <rect key="frame" x="91" y="288" width="118" height="29"/>
         
     | 
| 
      
 74 
     | 
    
         
            +
                                <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
         
     | 
| 
      
 75 
     | 
    
         
            +
                                <accessibility key="accessibilityConfiguration" label="AppElem"/>
         
     | 
| 
      
 76 
     | 
    
         
            +
                            </slider>
         
     | 
| 
      
 77 
     | 
    
         
            +
                            <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Label 2" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="21">
         
     | 
| 
      
 78 
     | 
    
         
            +
                                <rect key="frame" x="122" y="318" width="56" height="21"/>
         
     | 
| 
      
 79 
     | 
    
         
            +
                                <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
         
     | 
| 
      
 80 
     | 
    
         
            +
                                <accessibility key="accessibilityConfiguration" label="AppElem"/>
         
     | 
| 
      
 81 
     | 
    
         
            +
                                <fontDescription key="fontDescription" type="system" pointSize="17"/>
         
     | 
| 
      
 82 
     | 
    
         
            +
                                <color key="textColor" cocoaTouchSystemColor="darkTextColor"/>
         
     | 
| 
      
 83 
     | 
    
         
            +
                                <nil key="highlightedColor"/>
         
     | 
| 
      
 84 
     | 
    
         
            +
                            </label>
         
     | 
| 
      
 85 
     | 
    
         
            +
                            <button opaque="NO" contentMode="scaleToFill" enabled="NO" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" id="23">
         
     | 
| 
      
 86 
     | 
    
         
            +
                                <rect key="frame" x="83" y="347" width="136" height="28"/>
         
     | 
| 
      
 87 
     | 
    
         
            +
                                <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
         
     | 
| 
      
 88 
     | 
    
         
            +
                                <state key="normal" title="disabled button">
         
     | 
| 
      
 89 
     | 
    
         
            +
                                    <color key="titleColor" white="0.66666666666666663" alpha="1" colorSpace="calibratedWhite"/>
         
     | 
| 
      
 90 
     | 
    
         
            +
                                    <color key="titleShadowColor" white="0.5" alpha="1" colorSpace="calibratedWhite"/>
         
     | 
| 
      
 91 
     | 
    
         
            +
                                </state>
         
     | 
| 
      
 92 
     | 
    
         
            +
                                <userDefinedRuntimeAttributes>
         
     | 
| 
      
 93 
     | 
    
         
            +
                                    <userDefinedRuntimeAttribute type="string" keyPath="accessibilityIdentifier" value="DisabledButton"/>
         
     | 
| 
      
 94 
     | 
    
         
            +
                                </userDefinedRuntimeAttributes>
         
     | 
| 
      
 95 
     | 
    
         
            +
                            </button>
         
     | 
| 
      
 96 
     | 
    
         
            +
                            <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" id="25">
         
     | 
| 
      
 97 
     | 
    
         
            +
                                <rect key="frame" x="93" y="397" width="116" height="44"/>
         
     | 
| 
      
 98 
     | 
    
         
            +
                                <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
         
     | 
| 
      
 99 
     | 
    
         
            +
                                <state key="normal" title="Test Gesture">
         
     | 
| 
      
 100 
     | 
    
         
            +
                                    <color key="titleShadowColor" white="0.5" alpha="1" colorSpace="calibratedWhite"/>
         
     | 
| 
      
 101 
     | 
    
         
            +
                                </state>
         
     | 
| 
      
 102 
     | 
    
         
            +
                                <connections>
         
     | 
| 
      
 103 
     | 
    
         
            +
                                    <action selector="testGesture:" destination="-1" eventType="touchUpInside" id="26"/>
         
     | 
| 
      
 104 
     | 
    
         
            +
                                </connections>
         
     | 
| 
      
 105 
     | 
    
         
            +
                            </button>
         
     | 
| 
      
 106 
     | 
    
         
            +
                            <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Location" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="4Ko-7N-LkD">
         
     | 
| 
      
 107 
     | 
    
         
            +
                                <rect key="frame" x="82" y="383" width="73" height="21"/>
         
     | 
| 
      
 108 
     | 
    
         
            +
                                <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
         
     | 
| 
      
 109 
     | 
    
         
            +
                                <accessibility key="accessibilityConfiguration" label="">
         
     | 
| 
      
 110 
     | 
    
         
            +
                                    <bool key="isElement" value="NO"/>
         
     | 
| 
      
 111 
     | 
    
         
            +
                                </accessibility>
         
     | 
| 
      
 112 
     | 
    
         
            +
                                <fontDescription key="fontDescription" type="system" pointSize="17"/>
         
     | 
| 
      
 113 
     | 
    
         
            +
                                <color key="textColor" cocoaTouchSystemColor="darkTextColor"/>
         
     | 
| 
      
 114 
     | 
    
         
            +
                                <nil key="highlightedColor"/>
         
     | 
| 
      
 115 
     | 
    
         
            +
                            </label>
         
     | 
| 
      
 116 
     | 
    
         
            +
                            <switch opaque="NO" userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="750" verticalHuggingPriority="750" enabled="NO" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" id="bMw-Gn-PAX">
         
     | 
| 
      
 117 
     | 
    
         
            +
                                <rect key="frame" x="170" y="378" width="51" height="31"/>
         
     | 
| 
      
 118 
     | 
    
         
            +
                                <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
         
     | 
| 
      
 119 
     | 
    
         
            +
                                <accessibility key="accessibilityConfiguration" label="locationStatus"/>
         
     | 
| 
      
 120 
     | 
    
         
            +
                            </switch>
         
     | 
| 
      
 121 
     | 
    
         
            +
                            <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" id="xdD-tJ-23t">
         
     | 
| 
      
 122 
     | 
    
         
            +
                                <rect key="frame" x="110" y="214" width="86" height="30"/>
         
     | 
| 
      
 123 
     | 
    
         
            +
                                <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
         
     | 
| 
      
 124 
     | 
    
         
            +
                                <state key="normal" title="contact alert">
         
     | 
| 
      
 125 
     | 
    
         
            +
                                    <color key="titleShadowColor" white="0.5" alpha="1" colorSpace="calibratedWhite"/>
         
     | 
| 
      
 126 
     | 
    
         
            +
                                </state>
         
     | 
| 
      
 127 
     | 
    
         
            +
                                <connections>
         
     | 
| 
      
 128 
     | 
    
         
            +
                                    <action selector="accessContactsAlert:" destination="-1" eventType="touchUpInside" id="pGj-qr-SGO"/>
         
     | 
| 
      
 129 
     | 
    
         
            +
                                </connections>
         
     | 
| 
      
 130 
     | 
    
         
            +
                            </button>
         
     | 
| 
      
 131 
     | 
    
         
            +
                            <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" id="j8c-CX-YvG">
         
     | 
| 
      
 132 
     | 
    
         
            +
                                <rect key="frame" x="204" y="214" width="89" height="30"/>
         
     | 
| 
      
 133 
     | 
    
         
            +
                                <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
         
     | 
| 
      
 134 
     | 
    
         
            +
                                <state key="normal" title="location alert">
         
     | 
| 
      
 135 
     | 
    
         
            +
                                    <color key="titleShadowColor" white="0.5" alpha="1" colorSpace="calibratedWhite"/>
         
     | 
| 
      
 136 
     | 
    
         
            +
                                </state>
         
     | 
| 
      
 137 
     | 
    
         
            +
                                <connections>
         
     | 
| 
      
 138 
     | 
    
         
            +
                                    <action selector="accessLocationAlert:" destination="-1" eventType="touchUpInside" id="eAW-mg-Wvw"/>
         
     | 
| 
      
 139 
     | 
    
         
            +
                                </connections>
         
     | 
| 
      
 140 
     | 
    
         
            +
                            </button>
         
     | 
| 
      
 141 
     | 
    
         
            +
                            <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" id="0N3-MI-11C">
         
     | 
| 
      
 142 
     | 
    
         
            +
                                <rect key="frame" x="239" y="404" width="41" height="30"/>
         
     | 
| 
      
 143 
     | 
    
         
            +
                                <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
         
     | 
| 
      
 144 
     | 
    
         
            +
                                <accessibility key="accessibilityConfiguration" label="Crash"/>
         
     | 
| 
      
 145 
     | 
    
         
            +
                                <state key="normal" title="Crash">
         
     | 
| 
      
 146 
     | 
    
         
            +
                                    <color key="titleShadowColor" white="0.5" alpha="1" colorSpace="calibratedWhite"/>
         
     | 
| 
      
 147 
     | 
    
         
            +
                                </state>
         
     | 
| 
      
 148 
     | 
    
         
            +
                                <connections>
         
     | 
| 
      
 149 
     | 
    
         
            +
                                    <action selector="crashApp:" destination="-1" eventType="touchUpInside" id="YRC-14-Xer"/>
         
     | 
| 
      
 150 
     | 
    
         
            +
                                </connections>
         
     | 
| 
      
 151 
     | 
    
         
            +
                            </button>
         
     | 
| 
      
 152 
     | 
    
         
            +
                            <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="test" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="c5c-gA-adh">
         
     | 
| 
      
 153 
     | 
    
         
            +
                                <rect key="frame" x="234" y="291" width="29" height="21"/>
         
     | 
| 
      
 154 
     | 
    
         
            +
                                <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
         
     | 
| 
      
 155 
     | 
    
         
            +
                                <accessibility key="accessibilityConfiguration" label="">
         
     | 
| 
      
 156 
     | 
    
         
            +
                                    <bool key="isElement" value="NO"/>
         
     | 
| 
      
 157 
     | 
    
         
            +
                                </accessibility>
         
     | 
| 
      
 158 
     | 
    
         
            +
                                <fontDescription key="fontDescription" type="system" pointSize="17"/>
         
     | 
| 
      
 159 
     | 
    
         
            +
                                <color key="textColor" cocoaTouchSystemColor="darkTextColor"/>
         
     | 
| 
      
 160 
     | 
    
         
            +
                                <nil key="highlightedColor"/>
         
     | 
| 
      
 161 
     | 
    
         
            +
                                <userDefinedRuntimeAttributes>
         
     | 
| 
      
 162 
     | 
    
         
            +
                                    <userDefinedRuntimeAttribute type="string" keyPath="accessibilityIdentifier" value="Access'ibility"/>
         
     | 
| 
      
 163 
     | 
    
         
            +
                                </userDefinedRuntimeAttributes>
         
     | 
| 
      
 164 
     | 
    
         
            +
                            </label>
         
     | 
| 
      
 165 
     | 
    
         
            +
                        </subviews>
         
     | 
| 
      
 166 
     | 
    
         
            +
                        <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="calibratedWhite"/>
         
     | 
| 
      
 167 
     | 
    
         
            +
                        <freeformSimulatedSizeMetrics key="simulatedDestinationMetrics"/>
         
     | 
| 
      
 168 
     | 
    
         
            +
                    </view>
         
     | 
| 
      
 169 
     | 
    
         
            +
                </objects>
         
     | 
| 
      
 170 
     | 
    
         
            +
                <simulatedMetricsContainer key="defaultSimulatedMetrics">
         
     | 
| 
      
 171 
     | 
    
         
            +
                    <simulatedStatusBarMetrics key="statusBar"/>
         
     | 
| 
      
 172 
     | 
    
         
            +
                    <simulatedOrientationMetrics key="orientation"/>
         
     | 
| 
      
 173 
     | 
    
         
            +
                    <simulatedScreenMetrics key="destination" type="retina4"/>
         
     | 
| 
      
 174 
     | 
    
         
            +
                </simulatedMetricsContainer>
         
     | 
| 
      
 175 
     | 
    
         
            +
            </document>
         
     | 
| 
         @@ -0,0 +1,31 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            /**
         
     | 
| 
      
 2 
     | 
    
         
            +
             *	Copyright 2012 Appium Committers
         
     | 
| 
      
 3 
     | 
    
         
            +
             *
         
     | 
| 
      
 4 
     | 
    
         
            +
             *	Licensed to the Apache Software Foundation (ASF) under one
         
     | 
| 
      
 5 
     | 
    
         
            +
             *	or more contributor license agreements.  See the NOTICE file
         
     | 
| 
      
 6 
     | 
    
         
            +
             *	distributed with this work for additional information
         
     | 
| 
      
 7 
     | 
    
         
            +
             *	regarding copyright ownership.  The ASF licenses this file
         
     | 
| 
      
 8 
     | 
    
         
            +
             *	to you under the Apache License, Version 2.0 (the
         
     | 
| 
      
 9 
     | 
    
         
            +
             *	"License"); you may not use this file except in compliance
         
     | 
| 
      
 10 
     | 
    
         
            +
             *	with the License.  You may obtain a copy of the License at
         
     | 
| 
      
 11 
     | 
    
         
            +
             *
         
     | 
| 
      
 12 
     | 
    
         
            +
             *	http://www.apache.org/licenses/LICENSE-2.0
         
     | 
| 
      
 13 
     | 
    
         
            +
             *
         
     | 
| 
      
 14 
     | 
    
         
            +
             *	Unless required by applicable law or agreed to in writing,
         
     | 
| 
      
 15 
     | 
    
         
            +
             *	software distributed under the License is distributed on an
         
     | 
| 
      
 16 
     | 
    
         
            +
             *	"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
         
     | 
| 
      
 17 
     | 
    
         
            +
             *	KIND, either express or implied.  See the License for the
         
     | 
| 
      
 18 
     | 
    
         
            +
             *	specific language governing permissions and limitations
         
     | 
| 
      
 19 
     | 
    
         
            +
             *	under the License.
         
     | 
| 
      
 20 
     | 
    
         
            +
             */
         
     | 
| 
      
 21 
     | 
    
         
            +
             
     | 
| 
      
 22 
     | 
    
         
            +
            #import <UIKit/UIKit.h>
         
     | 
| 
      
 23 
     | 
    
         
            +
             
     | 
| 
      
 24 
     | 
    
         
            +
            #import "TA2AppDelegate.h"
         
     | 
| 
      
 25 
     | 
    
         
            +
             
     | 
| 
      
 26 
     | 
    
         
            +
            int main(int argc, char *argv[])
         
     | 
| 
      
 27 
     | 
    
         
            +
            {
         
     | 
| 
      
 28 
     | 
    
         
            +
            	@autoreleasepool {
         
     | 
| 
      
 29 
     | 
    
         
            +
            	    return UIApplicationMain(argc, argv, nil, NSStringFromClass([TA2AppDelegate class]));
         
     | 
| 
      
 30 
     | 
    
         
            +
            	}
         
     | 
| 
      
 31 
     | 
    
         
            +
            }
         
     | 
| 
         @@ -0,0 +1,336 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            // !$*UTF8*$!
         
     | 
| 
      
 2 
     | 
    
         
            +
            {
         
     | 
| 
      
 3 
     | 
    
         
            +
            	archiveVersion = 1;
         
     | 
| 
      
 4 
     | 
    
         
            +
            	classes = {
         
     | 
| 
      
 5 
     | 
    
         
            +
            	};
         
     | 
| 
      
 6 
     | 
    
         
            +
            	objectVersion = 46;
         
     | 
| 
      
 7 
     | 
    
         
            +
            	objects = {
         
     | 
| 
      
 8 
     | 
    
         
            +
             
     | 
| 
      
 9 
     | 
    
         
            +
            /* Begin PBXBuildFile section */
         
     | 
| 
      
 10 
     | 
    
         
            +
            		0FD861CB19A2933400F753B7 /* MyViewControllerViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 0FD861CD19A2933400F753B7 /* MyViewControllerViewController.xib */; };
         
     | 
| 
      
 11 
     | 
    
         
            +
            		1BB2B952189053DC00D0591D /* CoreLocation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1BB2B951189053DC00D0591D /* CoreLocation.framework */; };
         
     | 
| 
      
 12 
     | 
    
         
            +
            		255BAFEC1790223300DE7158 /* GestureTestViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 255BAFEA1790223300DE7158 /* GestureTestViewController.m */; };
         
     | 
| 
      
 13 
     | 
    
         
            +
            		255BAFED1790223300DE7158 /* GestureTestViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 255BAFEB1790223300DE7158 /* GestureTestViewController.xib */; };
         
     | 
| 
      
 14 
     | 
    
         
            +
            		255BAFEF1790249F00DE7158 /* MapKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 255BAFEE1790249F00DE7158 /* MapKit.framework */; };
         
     | 
| 
      
 15 
     | 
    
         
            +
            		3647AE1315CA0082006F70D6 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3647AE1215CA0082006F70D6 /* UIKit.framework */; };
         
     | 
| 
      
 16 
     | 
    
         
            +
            		3647AE1515CA0082006F70D6 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3647AE1415CA0082006F70D6 /* Foundation.framework */; };
         
     | 
| 
      
 17 
     | 
    
         
            +
            		3647AE1715CA0082006F70D6 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3647AE1615CA0082006F70D6 /* CoreGraphics.framework */; };
         
     | 
| 
      
 18 
     | 
    
         
            +
            		3647AE1D15CA0082006F70D6 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 3647AE1B15CA0082006F70D6 /* InfoPlist.strings */; };
         
     | 
| 
      
 19 
     | 
    
         
            +
            		3647AE1F15CA0082006F70D6 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 3647AE1E15CA0082006F70D6 /* main.m */; };
         
     | 
| 
      
 20 
     | 
    
         
            +
            		3647AE2315CA0082006F70D6 /* TA2AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 3647AE2215CA0082006F70D6 /* TA2AppDelegate.m */; };
         
     | 
| 
      
 21 
     | 
    
         
            +
            		3647AE2C15CA00D5006F70D6 /* MyViewControllerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3647AE2A15CA00D5006F70D6 /* MyViewControllerViewController.m */; };
         
     | 
| 
      
 22 
     | 
    
         
            +
            		36FEEFEE1656DD6000100C04 /* Default-568h@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 36FEEFED1656DD6000100C04 /* Default-568h@2x.png */; };
         
     | 
| 
      
 23 
     | 
    
         
            +
            		ABB96E8E192ECF150022BE43 /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = ABB96E8C192ECF150022BE43 /* Localizable.strings */; };
         
     | 
| 
      
 24 
     | 
    
         
            +
            		EA040B6118D3DF5E00AC02D8 /* AddressBook.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EA040B6018D3DF5E00AC02D8 /* AddressBook.framework */; };
         
     | 
| 
      
 25 
     | 
    
         
            +
            /* End PBXBuildFile section */
         
     | 
| 
      
 26 
     | 
    
         
            +
             
     | 
| 
      
 27 
     | 
    
         
            +
            /* Begin PBXFileReference section */
         
     | 
| 
      
 28 
     | 
    
         
            +
            		0FD861CC19A2933400F753B7 /* en */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = en; path = en.lproj/MyViewControllerViewController.xib; sourceTree = "<group>"; };
         
     | 
| 
      
 29 
     | 
    
         
            +
            		1BB2B951189053DC00D0591D /* CoreLocation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreLocation.framework; path = System/Library/Frameworks/CoreLocation.framework; sourceTree = SDKROOT; };
         
     | 
| 
      
 30 
     | 
    
         
            +
            		255BAFE91790223300DE7158 /* GestureTestViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GestureTestViewController.h; sourceTree = "<group>"; };
         
     | 
| 
      
 31 
     | 
    
         
            +
            		255BAFEA1790223300DE7158 /* GestureTestViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GestureTestViewController.m; sourceTree = "<group>"; };
         
     | 
| 
      
 32 
     | 
    
         
            +
            		255BAFEB1790223300DE7158 /* GestureTestViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = GestureTestViewController.xib; sourceTree = "<group>"; };
         
     | 
| 
      
 33 
     | 
    
         
            +
            		255BAFEE1790249F00DE7158 /* MapKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MapKit.framework; path = System/Library/Frameworks/MapKit.framework; sourceTree = SDKROOT; };
         
     | 
| 
      
 34 
     | 
    
         
            +
            		3647AE0E15CA0082006F70D6 /* TestApp.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = TestApp.app; sourceTree = BUILT_PRODUCTS_DIR; };
         
     | 
| 
      
 35 
     | 
    
         
            +
            		3647AE1215CA0082006F70D6 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
         
     | 
| 
      
 36 
     | 
    
         
            +
            		3647AE1415CA0082006F70D6 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
         
     | 
| 
      
 37 
     | 
    
         
            +
            		3647AE1615CA0082006F70D6 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
         
     | 
| 
      
 38 
     | 
    
         
            +
            		3647AE1A15CA0082006F70D6 /* TestApp-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "TestApp-Info.plist"; sourceTree = "<group>"; };
         
     | 
| 
      
 39 
     | 
    
         
            +
            		3647AE1C15CA0082006F70D6 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
         
     | 
| 
      
 40 
     | 
    
         
            +
            		3647AE1E15CA0082006F70D6 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
         
     | 
| 
      
 41 
     | 
    
         
            +
            		3647AE2015CA0082006F70D6 /* TestApp-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "TestApp-Prefix.pch"; sourceTree = "<group>"; };
         
     | 
| 
      
 42 
     | 
    
         
            +
            		3647AE2115CA0082006F70D6 /* TA2AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TA2AppDelegate.h; sourceTree = "<group>"; };
         
     | 
| 
      
 43 
     | 
    
         
            +
            		3647AE2215CA0082006F70D6 /* TA2AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = TA2AppDelegate.m; sourceTree = "<group>"; };
         
     | 
| 
      
 44 
     | 
    
         
            +
            		3647AE2915CA00D5006F70D6 /* MyViewControllerViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MyViewControllerViewController.h; sourceTree = "<group>"; };
         
     | 
| 
      
 45 
     | 
    
         
            +
            		3647AE2A15CA00D5006F70D6 /* MyViewControllerViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MyViewControllerViewController.m; sourceTree = "<group>"; };
         
     | 
| 
      
 46 
     | 
    
         
            +
            		36FEEFED1656DD6000100C04 /* Default-568h@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Default-568h@2x.png"; sourceTree = "<group>"; };
         
     | 
| 
      
 47 
     | 
    
         
            +
            		ABB96E8D192ECF150022BE43 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/Localizable.strings; sourceTree = "<group>"; };
         
     | 
| 
      
 48 
     | 
    
         
            +
            		EA040B6018D3DF5E00AC02D8 /* AddressBook.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AddressBook.framework; path = System/Library/Frameworks/AddressBook.framework; sourceTree = SDKROOT; };
         
     | 
| 
      
 49 
     | 
    
         
            +
            /* End PBXFileReference section */
         
     | 
| 
      
 50 
     | 
    
         
            +
             
     | 
| 
      
 51 
     | 
    
         
            +
            /* Begin PBXFrameworksBuildPhase section */
         
     | 
| 
      
 52 
     | 
    
         
            +
            		3647AE0B15CA0082006F70D6 /* Frameworks */ = {
         
     | 
| 
      
 53 
     | 
    
         
            +
            			isa = PBXFrameworksBuildPhase;
         
     | 
| 
      
 54 
     | 
    
         
            +
            			buildActionMask = 2147483647;
         
     | 
| 
      
 55 
     | 
    
         
            +
            			files = (
         
     | 
| 
      
 56 
     | 
    
         
            +
            				EA040B6118D3DF5E00AC02D8 /* AddressBook.framework in Frameworks */,
         
     | 
| 
      
 57 
     | 
    
         
            +
            				1BB2B952189053DC00D0591D /* CoreLocation.framework in Frameworks */,
         
     | 
| 
      
 58 
     | 
    
         
            +
            				255BAFEF1790249F00DE7158 /* MapKit.framework in Frameworks */,
         
     | 
| 
      
 59 
     | 
    
         
            +
            				3647AE1315CA0082006F70D6 /* UIKit.framework in Frameworks */,
         
     | 
| 
      
 60 
     | 
    
         
            +
            				3647AE1515CA0082006F70D6 /* Foundation.framework in Frameworks */,
         
     | 
| 
      
 61 
     | 
    
         
            +
            				3647AE1715CA0082006F70D6 /* CoreGraphics.framework in Frameworks */,
         
     | 
| 
      
 62 
     | 
    
         
            +
            			);
         
     | 
| 
      
 63 
     | 
    
         
            +
            			runOnlyForDeploymentPostprocessing = 0;
         
     | 
| 
      
 64 
     | 
    
         
            +
            		};
         
     | 
| 
      
 65 
     | 
    
         
            +
            /* End PBXFrameworksBuildPhase section */
         
     | 
| 
      
 66 
     | 
    
         
            +
             
     | 
| 
      
 67 
     | 
    
         
            +
            /* Begin PBXGroup section */
         
     | 
| 
      
 68 
     | 
    
         
            +
            		3647AE0315CA0082006F70D6 = {
         
     | 
| 
      
 69 
     | 
    
         
            +
            			isa = PBXGroup;
         
     | 
| 
      
 70 
     | 
    
         
            +
            			children = (
         
     | 
| 
      
 71 
     | 
    
         
            +
            				255BAFEE1790249F00DE7158 /* MapKit.framework */,
         
     | 
| 
      
 72 
     | 
    
         
            +
            				36FEEFED1656DD6000100C04 /* Default-568h@2x.png */,
         
     | 
| 
      
 73 
     | 
    
         
            +
            				3647AE1815CA0082006F70D6 /* TestApp */,
         
     | 
| 
      
 74 
     | 
    
         
            +
            				3647AE1115CA0082006F70D6 /* Frameworks */,
         
     | 
| 
      
 75 
     | 
    
         
            +
            				3647AE0F15CA0082006F70D6 /* Products */,
         
     | 
| 
      
 76 
     | 
    
         
            +
            			);
         
     | 
| 
      
 77 
     | 
    
         
            +
            			sourceTree = "<group>";
         
     | 
| 
      
 78 
     | 
    
         
            +
            		};
         
     | 
| 
      
 79 
     | 
    
         
            +
            		3647AE0F15CA0082006F70D6 /* Products */ = {
         
     | 
| 
      
 80 
     | 
    
         
            +
            			isa = PBXGroup;
         
     | 
| 
      
 81 
     | 
    
         
            +
            			children = (
         
     | 
| 
      
 82 
     | 
    
         
            +
            				3647AE0E15CA0082006F70D6 /* TestApp.app */,
         
     | 
| 
      
 83 
     | 
    
         
            +
            			);
         
     | 
| 
      
 84 
     | 
    
         
            +
            			name = Products;
         
     | 
| 
      
 85 
     | 
    
         
            +
            			sourceTree = "<group>";
         
     | 
| 
      
 86 
     | 
    
         
            +
            		};
         
     | 
| 
      
 87 
     | 
    
         
            +
            		3647AE1115CA0082006F70D6 /* Frameworks */ = {
         
     | 
| 
      
 88 
     | 
    
         
            +
            			isa = PBXGroup;
         
     | 
| 
      
 89 
     | 
    
         
            +
            			children = (
         
     | 
| 
      
 90 
     | 
    
         
            +
            				EA040B6018D3DF5E00AC02D8 /* AddressBook.framework */,
         
     | 
| 
      
 91 
     | 
    
         
            +
            				1BB2B951189053DC00D0591D /* CoreLocation.framework */,
         
     | 
| 
      
 92 
     | 
    
         
            +
            				3647AE1215CA0082006F70D6 /* UIKit.framework */,
         
     | 
| 
      
 93 
     | 
    
         
            +
            				3647AE1415CA0082006F70D6 /* Foundation.framework */,
         
     | 
| 
      
 94 
     | 
    
         
            +
            				3647AE1615CA0082006F70D6 /* CoreGraphics.framework */,
         
     | 
| 
      
 95 
     | 
    
         
            +
            			);
         
     | 
| 
      
 96 
     | 
    
         
            +
            			name = Frameworks;
         
     | 
| 
      
 97 
     | 
    
         
            +
            			sourceTree = "<group>";
         
     | 
| 
      
 98 
     | 
    
         
            +
            		};
         
     | 
| 
      
 99 
     | 
    
         
            +
            		3647AE1815CA0082006F70D6 /* TestApp */ = {
         
     | 
| 
      
 100 
     | 
    
         
            +
            			isa = PBXGroup;
         
     | 
| 
      
 101 
     | 
    
         
            +
            			children = (
         
     | 
| 
      
 102 
     | 
    
         
            +
            				3647AE2115CA0082006F70D6 /* TA2AppDelegate.h */,
         
     | 
| 
      
 103 
     | 
    
         
            +
            				3647AE2215CA0082006F70D6 /* TA2AppDelegate.m */,
         
     | 
| 
      
 104 
     | 
    
         
            +
            				3647AE1915CA0082006F70D6 /* Supporting Files */,
         
     | 
| 
      
 105 
     | 
    
         
            +
            				3647AE2915CA00D5006F70D6 /* MyViewControllerViewController.h */,
         
     | 
| 
      
 106 
     | 
    
         
            +
            				3647AE2A15CA00D5006F70D6 /* MyViewControllerViewController.m */,
         
     | 
| 
      
 107 
     | 
    
         
            +
            				0FD861CD19A2933400F753B7 /* MyViewControllerViewController.xib */,
         
     | 
| 
      
 108 
     | 
    
         
            +
            				255BAFE91790223300DE7158 /* GestureTestViewController.h */,
         
     | 
| 
      
 109 
     | 
    
         
            +
            				255BAFEA1790223300DE7158 /* GestureTestViewController.m */,
         
     | 
| 
      
 110 
     | 
    
         
            +
            				255BAFEB1790223300DE7158 /* GestureTestViewController.xib */,
         
     | 
| 
      
 111 
     | 
    
         
            +
            			);
         
     | 
| 
      
 112 
     | 
    
         
            +
            			name = TestApp;
         
     | 
| 
      
 113 
     | 
    
         
            +
            			path = "Test App 2";
         
     | 
| 
      
 114 
     | 
    
         
            +
            			sourceTree = "<group>";
         
     | 
| 
      
 115 
     | 
    
         
            +
            		};
         
     | 
| 
      
 116 
     | 
    
         
            +
            		3647AE1915CA0082006F70D6 /* Supporting Files */ = {
         
     | 
| 
      
 117 
     | 
    
         
            +
            			isa = PBXGroup;
         
     | 
| 
      
 118 
     | 
    
         
            +
            			children = (
         
     | 
| 
      
 119 
     | 
    
         
            +
            				3647AE1A15CA0082006F70D6 /* TestApp-Info.plist */,
         
     | 
| 
      
 120 
     | 
    
         
            +
            				ABB96E8C192ECF150022BE43 /* Localizable.strings */,
         
     | 
| 
      
 121 
     | 
    
         
            +
            				3647AE1B15CA0082006F70D6 /* InfoPlist.strings */,
         
     | 
| 
      
 122 
     | 
    
         
            +
            				3647AE1E15CA0082006F70D6 /* main.m */,
         
     | 
| 
      
 123 
     | 
    
         
            +
            				3647AE2015CA0082006F70D6 /* TestApp-Prefix.pch */,
         
     | 
| 
      
 124 
     | 
    
         
            +
            			);
         
     | 
| 
      
 125 
     | 
    
         
            +
            			name = "Supporting Files";
         
     | 
| 
      
 126 
     | 
    
         
            +
            			sourceTree = "<group>";
         
     | 
| 
      
 127 
     | 
    
         
            +
            		};
         
     | 
| 
      
 128 
     | 
    
         
            +
            /* End PBXGroup section */
         
     | 
| 
      
 129 
     | 
    
         
            +
             
     | 
| 
      
 130 
     | 
    
         
            +
            /* Begin PBXNativeTarget section */
         
     | 
| 
      
 131 
     | 
    
         
            +
            		3647AE0D15CA0082006F70D6 /* TestApp */ = {
         
     | 
| 
      
 132 
     | 
    
         
            +
            			isa = PBXNativeTarget;
         
     | 
| 
      
 133 
     | 
    
         
            +
            			buildConfigurationList = 3647AE2615CA0082006F70D6 /* Build configuration list for PBXNativeTarget "TestApp" */;
         
     | 
| 
      
 134 
     | 
    
         
            +
            			buildPhases = (
         
     | 
| 
      
 135 
     | 
    
         
            +
            				3647AE0A15CA0082006F70D6 /* Sources */,
         
     | 
| 
      
 136 
     | 
    
         
            +
            				3647AE0B15CA0082006F70D6 /* Frameworks */,
         
     | 
| 
      
 137 
     | 
    
         
            +
            				3647AE0C15CA0082006F70D6 /* Resources */,
         
     | 
| 
      
 138 
     | 
    
         
            +
            			);
         
     | 
| 
      
 139 
     | 
    
         
            +
            			buildRules = (
         
     | 
| 
      
 140 
     | 
    
         
            +
            			);
         
     | 
| 
      
 141 
     | 
    
         
            +
            			dependencies = (
         
     | 
| 
      
 142 
     | 
    
         
            +
            			);
         
     | 
| 
      
 143 
     | 
    
         
            +
            			name = TestApp;
         
     | 
| 
      
 144 
     | 
    
         
            +
            			productName = "Test App 2";
         
     | 
| 
      
 145 
     | 
    
         
            +
            			productReference = 3647AE0E15CA0082006F70D6 /* TestApp.app */;
         
     | 
| 
      
 146 
     | 
    
         
            +
            			productType = "com.apple.product-type.application";
         
     | 
| 
      
 147 
     | 
    
         
            +
            		};
         
     | 
| 
      
 148 
     | 
    
         
            +
            /* End PBXNativeTarget section */
         
     | 
| 
      
 149 
     | 
    
         
            +
             
     | 
| 
      
 150 
     | 
    
         
            +
            /* Begin PBXProject section */
         
     | 
| 
      
 151 
     | 
    
         
            +
            		3647AE0515CA0082006F70D6 /* Project object */ = {
         
     | 
| 
      
 152 
     | 
    
         
            +
            			isa = PBXProject;
         
     | 
| 
      
 153 
     | 
    
         
            +
            			attributes = {
         
     | 
| 
      
 154 
     | 
    
         
            +
            				CLASSPREFIX = TA2;
         
     | 
| 
      
 155 
     | 
    
         
            +
            				LastUpgradeCheck = 0460;
         
     | 
| 
      
 156 
     | 
    
         
            +
            			};
         
     | 
| 
      
 157 
     | 
    
         
            +
            			buildConfigurationList = 3647AE0815CA0082006F70D6 /* Build configuration list for PBXProject "TestApp" */;
         
     | 
| 
      
 158 
     | 
    
         
            +
            			compatibilityVersion = "Xcode 3.2";
         
     | 
| 
      
 159 
     | 
    
         
            +
            			developmentRegion = English;
         
     | 
| 
      
 160 
     | 
    
         
            +
            			hasScannedForEncodings = 0;
         
     | 
| 
      
 161 
     | 
    
         
            +
            			knownRegions = (
         
     | 
| 
      
 162 
     | 
    
         
            +
            				en,
         
     | 
| 
      
 163 
     | 
    
         
            +
            			);
         
     | 
| 
      
 164 
     | 
    
         
            +
            			mainGroup = 3647AE0315CA0082006F70D6;
         
     | 
| 
      
 165 
     | 
    
         
            +
            			productRefGroup = 3647AE0F15CA0082006F70D6 /* Products */;
         
     | 
| 
      
 166 
     | 
    
         
            +
            			projectDirPath = "";
         
     | 
| 
      
 167 
     | 
    
         
            +
            			projectRoot = "";
         
     | 
| 
      
 168 
     | 
    
         
            +
            			targets = (
         
     | 
| 
      
 169 
     | 
    
         
            +
            				3647AE0D15CA0082006F70D6 /* TestApp */,
         
     | 
| 
      
 170 
     | 
    
         
            +
            			);
         
     | 
| 
      
 171 
     | 
    
         
            +
            		};
         
     | 
| 
      
 172 
     | 
    
         
            +
            /* End PBXProject section */
         
     | 
| 
      
 173 
     | 
    
         
            +
             
     | 
| 
      
 174 
     | 
    
         
            +
            /* Begin PBXResourcesBuildPhase section */
         
     | 
| 
      
 175 
     | 
    
         
            +
            		3647AE0C15CA0082006F70D6 /* Resources */ = {
         
     | 
| 
      
 176 
     | 
    
         
            +
            			isa = PBXResourcesBuildPhase;
         
     | 
| 
      
 177 
     | 
    
         
            +
            			buildActionMask = 2147483647;
         
     | 
| 
      
 178 
     | 
    
         
            +
            			files = (
         
     | 
| 
      
 179 
     | 
    
         
            +
            				ABB96E8E192ECF150022BE43 /* Localizable.strings in Resources */,
         
     | 
| 
      
 180 
     | 
    
         
            +
            				3647AE1D15CA0082006F70D6 /* InfoPlist.strings in Resources */,
         
     | 
| 
      
 181 
     | 
    
         
            +
            				0FD861CB19A2933400F753B7 /* MyViewControllerViewController.xib in Resources */,
         
     | 
| 
      
 182 
     | 
    
         
            +
            				36FEEFEE1656DD6000100C04 /* Default-568h@2x.png in Resources */,
         
     | 
| 
      
 183 
     | 
    
         
            +
            				255BAFED1790223300DE7158 /* GestureTestViewController.xib in Resources */,
         
     | 
| 
      
 184 
     | 
    
         
            +
            			);
         
     | 
| 
      
 185 
     | 
    
         
            +
            			runOnlyForDeploymentPostprocessing = 0;
         
     | 
| 
      
 186 
     | 
    
         
            +
            		};
         
     | 
| 
      
 187 
     | 
    
         
            +
            /* End PBXResourcesBuildPhase section */
         
     | 
| 
      
 188 
     | 
    
         
            +
             
     | 
| 
      
 189 
     | 
    
         
            +
            /* Begin PBXSourcesBuildPhase section */
         
     | 
| 
      
 190 
     | 
    
         
            +
            		3647AE0A15CA0082006F70D6 /* Sources */ = {
         
     | 
| 
      
 191 
     | 
    
         
            +
            			isa = PBXSourcesBuildPhase;
         
     | 
| 
      
 192 
     | 
    
         
            +
            			buildActionMask = 2147483647;
         
     | 
| 
      
 193 
     | 
    
         
            +
            			files = (
         
     | 
| 
      
 194 
     | 
    
         
            +
            				3647AE1F15CA0082006F70D6 /* main.m in Sources */,
         
     | 
| 
      
 195 
     | 
    
         
            +
            				3647AE2315CA0082006F70D6 /* TA2AppDelegate.m in Sources */,
         
     | 
| 
      
 196 
     | 
    
         
            +
            				3647AE2C15CA00D5006F70D6 /* MyViewControllerViewController.m in Sources */,
         
     | 
| 
      
 197 
     | 
    
         
            +
            				255BAFEC1790223300DE7158 /* GestureTestViewController.m in Sources */,
         
     | 
| 
      
 198 
     | 
    
         
            +
            			);
         
     | 
| 
      
 199 
     | 
    
         
            +
            			runOnlyForDeploymentPostprocessing = 0;
         
     | 
| 
      
 200 
     | 
    
         
            +
            		};
         
     | 
| 
      
 201 
     | 
    
         
            +
            /* End PBXSourcesBuildPhase section */
         
     | 
| 
      
 202 
     | 
    
         
            +
             
     | 
| 
      
 203 
     | 
    
         
            +
            /* Begin PBXVariantGroup section */
         
     | 
| 
      
 204 
     | 
    
         
            +
            		0FD861CD19A2933400F753B7 /* MyViewControllerViewController.xib */ = {
         
     | 
| 
      
 205 
     | 
    
         
            +
            			isa = PBXVariantGroup;
         
     | 
| 
      
 206 
     | 
    
         
            +
            			children = (
         
     | 
| 
      
 207 
     | 
    
         
            +
            				0FD861CC19A2933400F753B7 /* en */,
         
     | 
| 
      
 208 
     | 
    
         
            +
            			);
         
     | 
| 
      
 209 
     | 
    
         
            +
            			name = MyViewControllerViewController.xib;
         
     | 
| 
      
 210 
     | 
    
         
            +
            			sourceTree = "<group>";
         
     | 
| 
      
 211 
     | 
    
         
            +
            		};
         
     | 
| 
      
 212 
     | 
    
         
            +
            		3647AE1B15CA0082006F70D6 /* InfoPlist.strings */ = {
         
     | 
| 
      
 213 
     | 
    
         
            +
            			isa = PBXVariantGroup;
         
     | 
| 
      
 214 
     | 
    
         
            +
            			children = (
         
     | 
| 
      
 215 
     | 
    
         
            +
            				3647AE1C15CA0082006F70D6 /* en */,
         
     | 
| 
      
 216 
     | 
    
         
            +
            			);
         
     | 
| 
      
 217 
     | 
    
         
            +
            			name = InfoPlist.strings;
         
     | 
| 
      
 218 
     | 
    
         
            +
            			sourceTree = "<group>";
         
     | 
| 
      
 219 
     | 
    
         
            +
            		};
         
     | 
| 
      
 220 
     | 
    
         
            +
            		ABB96E8C192ECF150022BE43 /* Localizable.strings */ = {
         
     | 
| 
      
 221 
     | 
    
         
            +
            			isa = PBXVariantGroup;
         
     | 
| 
      
 222 
     | 
    
         
            +
            			children = (
         
     | 
| 
      
 223 
     | 
    
         
            +
            				ABB96E8D192ECF150022BE43 /* en */,
         
     | 
| 
      
 224 
     | 
    
         
            +
            			);
         
     | 
| 
      
 225 
     | 
    
         
            +
            			name = Localizable.strings;
         
     | 
| 
      
 226 
     | 
    
         
            +
            			sourceTree = "<group>";
         
     | 
| 
      
 227 
     | 
    
         
            +
            		};
         
     | 
| 
      
 228 
     | 
    
         
            +
            /* End PBXVariantGroup section */
         
     | 
| 
      
 229 
     | 
    
         
            +
             
     | 
| 
      
 230 
     | 
    
         
            +
            /* Begin XCBuildConfiguration section */
         
     | 
| 
      
 231 
     | 
    
         
            +
            		3647AE2415CA0082006F70D6 /* Debug */ = {
         
     | 
| 
      
 232 
     | 
    
         
            +
            			isa = XCBuildConfiguration;
         
     | 
| 
      
 233 
     | 
    
         
            +
            			buildSettings = {
         
     | 
| 
      
 234 
     | 
    
         
            +
            				ALWAYS_SEARCH_USER_PATHS = NO;
         
     | 
| 
      
 235 
     | 
    
         
            +
            				ARCHS = "$(ARCHS_STANDARD_32_BIT)";
         
     | 
| 
      
 236 
     | 
    
         
            +
            				CLANG_WARN_CONSTANT_CONVERSION = YES;
         
     | 
| 
      
 237 
     | 
    
         
            +
            				CLANG_WARN_ENUM_CONVERSION = YES;
         
     | 
| 
      
 238 
     | 
    
         
            +
            				CLANG_WARN_INT_CONVERSION = YES;
         
     | 
| 
      
 239 
     | 
    
         
            +
            				CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
         
     | 
| 
      
 240 
     | 
    
         
            +
            				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
         
     | 
| 
      
 241 
     | 
    
         
            +
            				COPY_PHASE_STRIP = NO;
         
     | 
| 
      
 242 
     | 
    
         
            +
            				GCC_C_LANGUAGE_STANDARD = gnu99;
         
     | 
| 
      
 243 
     | 
    
         
            +
            				GCC_DYNAMIC_NO_PIC = NO;
         
     | 
| 
      
 244 
     | 
    
         
            +
            				GCC_OPTIMIZATION_LEVEL = 0;
         
     | 
| 
      
 245 
     | 
    
         
            +
            				GCC_PREPROCESSOR_DEFINITIONS = (
         
     | 
| 
      
 246 
     | 
    
         
            +
            					"DEBUG=1",
         
     | 
| 
      
 247 
     | 
    
         
            +
            					"$(inherited)",
         
     | 
| 
      
 248 
     | 
    
         
            +
            				);
         
     | 
| 
      
 249 
     | 
    
         
            +
            				GCC_SYMBOLS_PRIVATE_EXTERN = NO;
         
     | 
| 
      
 250 
     | 
    
         
            +
            				GCC_VERSION = com.apple.compilers.llvm.clang.1_0;
         
     | 
| 
      
 251 
     | 
    
         
            +
            				GCC_WARN_ABOUT_RETURN_TYPE = YES;
         
     | 
| 
      
 252 
     | 
    
         
            +
            				GCC_WARN_UNINITIALIZED_AUTOS = YES;
         
     | 
| 
      
 253 
     | 
    
         
            +
            				GCC_WARN_UNUSED_VARIABLE = YES;
         
     | 
| 
      
 254 
     | 
    
         
            +
            				IPHONEOS_DEPLOYMENT_TARGET = 6.1;
         
     | 
| 
      
 255 
     | 
    
         
            +
            				SDKROOT = iphoneos;
         
     | 
| 
      
 256 
     | 
    
         
            +
            			};
         
     | 
| 
      
 257 
     | 
    
         
            +
            			name = Debug;
         
     | 
| 
      
 258 
     | 
    
         
            +
            		};
         
     | 
| 
      
 259 
     | 
    
         
            +
            		3647AE2515CA0082006F70D6 /* Release */ = {
         
     | 
| 
      
 260 
     | 
    
         
            +
            			isa = XCBuildConfiguration;
         
     | 
| 
      
 261 
     | 
    
         
            +
            			buildSettings = {
         
     | 
| 
      
 262 
     | 
    
         
            +
            				ALWAYS_SEARCH_USER_PATHS = NO;
         
     | 
| 
      
 263 
     | 
    
         
            +
            				ARCHS = "$(ARCHS_STANDARD_32_BIT)";
         
     | 
| 
      
 264 
     | 
    
         
            +
            				CLANG_WARN_CONSTANT_CONVERSION = YES;
         
     | 
| 
      
 265 
     | 
    
         
            +
            				CLANG_WARN_ENUM_CONVERSION = YES;
         
     | 
| 
      
 266 
     | 
    
         
            +
            				CLANG_WARN_INT_CONVERSION = YES;
         
     | 
| 
      
 267 
     | 
    
         
            +
            				CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
         
     | 
| 
      
 268 
     | 
    
         
            +
            				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
         
     | 
| 
      
 269 
     | 
    
         
            +
            				COPY_PHASE_STRIP = NO;
         
     | 
| 
      
 270 
     | 
    
         
            +
            				GCC_C_LANGUAGE_STANDARD = gnu99;
         
     | 
| 
      
 271 
     | 
    
         
            +
            				GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1";
         
     | 
| 
      
 272 
     | 
    
         
            +
            				GCC_VERSION = com.apple.compilers.llvm.clang.1_0;
         
     | 
| 
      
 273 
     | 
    
         
            +
            				GCC_WARN_ABOUT_RETURN_TYPE = YES;
         
     | 
| 
      
 274 
     | 
    
         
            +
            				GCC_WARN_UNINITIALIZED_AUTOS = YES;
         
     | 
| 
      
 275 
     | 
    
         
            +
            				GCC_WARN_UNUSED_VARIABLE = YES;
         
     | 
| 
      
 276 
     | 
    
         
            +
            				IPHONEOS_DEPLOYMENT_TARGET = 6.1;
         
     | 
| 
      
 277 
     | 
    
         
            +
            				OTHER_CFLAGS = "-DNS_BLOCK_ASSERTIONS=1";
         
     | 
| 
      
 278 
     | 
    
         
            +
            				SDKROOT = iphoneos;
         
     | 
| 
      
 279 
     | 
    
         
            +
            				VALIDATE_PRODUCT = YES;
         
     | 
| 
      
 280 
     | 
    
         
            +
            			};
         
     | 
| 
      
 281 
     | 
    
         
            +
            			name = Release;
         
     | 
| 
      
 282 
     | 
    
         
            +
            		};
         
     | 
| 
      
 283 
     | 
    
         
            +
            		3647AE2715CA0082006F70D6 /* Debug */ = {
         
     | 
| 
      
 284 
     | 
    
         
            +
            			isa = XCBuildConfiguration;
         
     | 
| 
      
 285 
     | 
    
         
            +
            			buildSettings = {
         
     | 
| 
      
 286 
     | 
    
         
            +
            				CODE_SIGN_IDENTITY = "iPhone Developer";
         
     | 
| 
      
 287 
     | 
    
         
            +
            				GCC_PRECOMPILE_PREFIX_HEADER = YES;
         
     | 
| 
      
 288 
     | 
    
         
            +
            				GCC_PREFIX_HEADER = "Test App 2/TestApp-Prefix.pch";
         
     | 
| 
      
 289 
     | 
    
         
            +
            				INFOPLIST_FILE = "Test App 2/TestApp-Info.plist";
         
     | 
| 
      
 290 
     | 
    
         
            +
            				IPHONEOS_DEPLOYMENT_TARGET = 6.1;
         
     | 
| 
      
 291 
     | 
    
         
            +
            				PRODUCT_NAME = TestApp;
         
     | 
| 
      
 292 
     | 
    
         
            +
            				PROVISIONING_PROFILE = "";
         
     | 
| 
      
 293 
     | 
    
         
            +
            				WRAPPER_EXTENSION = app;
         
     | 
| 
      
 294 
     | 
    
         
            +
            			};
         
     | 
| 
      
 295 
     | 
    
         
            +
            			name = Debug;
         
     | 
| 
      
 296 
     | 
    
         
            +
            		};
         
     | 
| 
      
 297 
     | 
    
         
            +
            		3647AE2815CA0082006F70D6 /* Release */ = {
         
     | 
| 
      
 298 
     | 
    
         
            +
            			isa = XCBuildConfiguration;
         
     | 
| 
      
 299 
     | 
    
         
            +
            			buildSettings = {
         
     | 
| 
      
 300 
     | 
    
         
            +
            				CODE_SIGN_IDENTITY = "iPhone Developer";
         
     | 
| 
      
 301 
     | 
    
         
            +
            				GCC_PRECOMPILE_PREFIX_HEADER = YES;
         
     | 
| 
      
 302 
     | 
    
         
            +
            				GCC_PREFIX_HEADER = "Test App 2/TestApp-Prefix.pch";
         
     | 
| 
      
 303 
     | 
    
         
            +
            				INFOPLIST_FILE = "Test App 2/TestApp-Info.plist";
         
     | 
| 
      
 304 
     | 
    
         
            +
            				INSTALL_PATH = "${LOCAL_APPS_DIR}";
         
     | 
| 
      
 305 
     | 
    
         
            +
            				IPHONEOS_DEPLOYMENT_TARGET = 6.1;
         
     | 
| 
      
 306 
     | 
    
         
            +
            				PRODUCT_NAME = TestApp;
         
     | 
| 
      
 307 
     | 
    
         
            +
            				PROVISIONING_PROFILE = "";
         
     | 
| 
      
 308 
     | 
    
         
            +
            				WRAPPER_EXTENSION = app;
         
     | 
| 
      
 309 
     | 
    
         
            +
            			};
         
     | 
| 
      
 310 
     | 
    
         
            +
            			name = Release;
         
     | 
| 
      
 311 
     | 
    
         
            +
            		};
         
     | 
| 
      
 312 
     | 
    
         
            +
            /* End XCBuildConfiguration section */
         
     | 
| 
      
 313 
     | 
    
         
            +
             
     | 
| 
      
 314 
     | 
    
         
            +
            /* Begin XCConfigurationList section */
         
     | 
| 
      
 315 
     | 
    
         
            +
            		3647AE0815CA0082006F70D6 /* Build configuration list for PBXProject "TestApp" */ = {
         
     | 
| 
      
 316 
     | 
    
         
            +
            			isa = XCConfigurationList;
         
     | 
| 
      
 317 
     | 
    
         
            +
            			buildConfigurations = (
         
     | 
| 
      
 318 
     | 
    
         
            +
            				3647AE2415CA0082006F70D6 /* Debug */,
         
     | 
| 
      
 319 
     | 
    
         
            +
            				3647AE2515CA0082006F70D6 /* Release */,
         
     | 
| 
      
 320 
     | 
    
         
            +
            			);
         
     | 
| 
      
 321 
     | 
    
         
            +
            			defaultConfigurationIsVisible = 0;
         
     | 
| 
      
 322 
     | 
    
         
            +
            			defaultConfigurationName = Release;
         
     | 
| 
      
 323 
     | 
    
         
            +
            		};
         
     | 
| 
      
 324 
     | 
    
         
            +
            		3647AE2615CA0082006F70D6 /* Build configuration list for PBXNativeTarget "TestApp" */ = {
         
     | 
| 
      
 325 
     | 
    
         
            +
            			isa = XCConfigurationList;
         
     | 
| 
      
 326 
     | 
    
         
            +
            			buildConfigurations = (
         
     | 
| 
      
 327 
     | 
    
         
            +
            				3647AE2715CA0082006F70D6 /* Debug */,
         
     | 
| 
      
 328 
     | 
    
         
            +
            				3647AE2815CA0082006F70D6 /* Release */,
         
     | 
| 
      
 329 
     | 
    
         
            +
            			);
         
     | 
| 
      
 330 
     | 
    
         
            +
            			defaultConfigurationIsVisible = 0;
         
     | 
| 
      
 331 
     | 
    
         
            +
            			defaultConfigurationName = Release;
         
     | 
| 
      
 332 
     | 
    
         
            +
            		};
         
     | 
| 
      
 333 
     | 
    
         
            +
            /* End XCConfigurationList section */
         
     | 
| 
      
 334 
     | 
    
         
            +
            	};
         
     | 
| 
      
 335 
     | 
    
         
            +
            	rootObject = 3647AE0515CA0082006F70D6 /* Project object */;
         
     | 
| 
      
 336 
     | 
    
         
            +
            }
         
     |