Merge pull request #12 from keefertaylor/restructure

Restructure File Structure
This commit is contained in:
Keefer Taylor 2019-01-18 02:06:44 +00:00 committed by GitHub
commit fa22ccf190
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
14 changed files with 32 additions and 435 deletions

4
.gitignore vendored
View File

@ -60,3 +60,7 @@ screenshots
#build output
/outputs
# Playgrounds
timeline.xctimeline
playground.xcworkspace

View File

@ -0,0 +1,6 @@
import MnemonicKit
let strength = 128
if let mnemonic = Mnemonic.generateMnemonic(strength: strength) {
print("A mnemonic of strength \(strength): \(mnemonic)");
}

View File

@ -0,0 +1,4 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<playground version='5.0' target-platform='ios' executeOnSourceChanges='false'>
<timeline fileName='timeline.xctimeline'/>
</playground>

View File

@ -7,14 +7,8 @@
objects = {
/* Begin PBXBuildFile section */
778602AF2186370E0036843F /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 778602AE2186370E0036843F /* AppDelegate.swift */; };
778602B12186370E0036843F /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 778602B02186370E0036843F /* ViewController.swift */; };
778602B42186370E0036843F /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 778602B22186370E0036843F /* Main.storyboard */; };
778602B62186370F0036843F /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 778602B52186370F0036843F /* Assets.xcassets */; };
778602B92186370F0036843F /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 778602B72186370F0036843F /* LaunchScreen.storyboard */; };
77FE007321BDA0CF009C3CD1 /* MnemonicKitTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 778602D621863BDD0036843F /* MnemonicKitTests.swift */; };
77FE007421BDA2AF009C3CD1 /* vectors.json in Resources */ = {isa = PBXBuildFile; fileRef = 778602DE2186426A0036843F /* vectors.json */; };
F8A8C56221CD4C86005684A3 /* MnemonicKit.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = F8A8C55A21CD4C86005684A3 /* MnemonicKit.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
F8A8C56721CD4CAA005684A3 /* CryptoSwift.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F8A8C54321CD490C005684A3 /* CryptoSwift.framework */; };
F8DA3F0721DE068F004B016E /* Mnemonic.swift in Sources */ = {isa = PBXBuildFile; fileRef = F8DA3F0121DE068F004B016E /* Mnemonic.swift */; };
F8DA3F0821DE068F004B016E /* String+MnemonicData.swift in Sources */ = {isa = PBXBuildFile; fileRef = F8DA3F0221DE068F004B016E /* String+MnemonicData.swift */; };
@ -25,20 +19,6 @@
/* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */
F8A8C55F21CD4C86005684A3 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 778602A32186370E0036843F /* Project object */;
proxyType = 1;
remoteGlobalIDString = F8A8C55921CD4C86005684A3;
remoteInfo = MnemonicKit;
};
F8DA3F1521DE0932004B016E /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 778602A32186370E0036843F /* Project object */;
proxyType = 1;
remoteGlobalIDString = 778602AA2186370E0036843F;
remoteInfo = MnemonicKitExampleApp;
};
F8DA3F1721DE0935004B016E /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 778602A32186370E0036843F /* Project object */;
@ -48,31 +28,11 @@
};
/* End PBXContainerItemProxy section */
/* Begin PBXCopyFilesBuildPhase section */
F8A8C56621CD4C86005684A3 /* Embed Frameworks */ = {
isa = PBXCopyFilesBuildPhase;
buildActionMask = 2147483647;
dstPath = "";
dstSubfolderSpec = 10;
files = (
F8A8C56221CD4C86005684A3 /* MnemonicKit.framework in Embed Frameworks */,
);
name = "Embed Frameworks";
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXCopyFilesBuildPhase section */
/* Begin PBXFileReference section */
778602AB2186370E0036843F /* MnemonicKitExampleApp.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = MnemonicKitExampleApp.app; sourceTree = BUILT_PRODUCTS_DIR; };
778602AE2186370E0036843F /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
778602B02186370E0036843F /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = "<group>"; };
778602B32186370E0036843F /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
778602B52186370F0036843F /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
778602B82186370F0036843F /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
778602BA2186370F0036843F /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
778602D621863BDD0036843F /* MnemonicKitTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MnemonicKitTests.swift; sourceTree = "<group>"; };
778602D821863BDD0036843F /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
778602DE2186426A0036843F /* vectors.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = vectors.json; sourceTree = "<group>"; };
77CE32B121F16281006ADABA /* MnemonicKitExample.playground */ = {isa = PBXFileReference; lastKnownFileType = file.playground; name = MnemonicKitExample.playground; path = Examples/MnemonicKitExample.playground; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.swift; };
77FE006821BDA092009C3CD1 /* MnemonicKitTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = MnemonicKitTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
F8A8C54321CD490C005684A3 /* CryptoSwift.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CryptoSwift.framework; path = Carthage/Build/iOS/CryptoSwift.framework; sourceTree = "<group>"; };
F8A8C55A21CD4C86005684A3 /* MnemonicKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = MnemonicKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
@ -87,13 +47,6 @@
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
778602A82186370E0036843F /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
77FE006521BDA092009C3CD1 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
@ -125,8 +78,8 @@
778602A22186370E0036843F = {
isa = PBXGroup;
children = (
778602AD2186370E0036843F /* Sources */,
778602D521863BDD0036843F /* MnemonicKitTests */,
77CE32B321F16899006ADABA /* Examples */,
778602D521863BDD0036843F /* Tests */,
F8A8C55B21CD4C86005684A3 /* MnemonicKit */,
778602AC2186370E0036843F /* Products */,
487474B4EF0B93DF80EF5CE8 /* Frameworks */,
@ -136,49 +89,35 @@
778602AC2186370E0036843F /* Products */ = {
isa = PBXGroup;
children = (
778602AB2186370E0036843F /* MnemonicKitExampleApp.app */,
77FE006821BDA092009C3CD1 /* MnemonicKitTests.xctest */,
F8A8C55A21CD4C86005684A3 /* MnemonicKit.framework */,
);
name = Products;
sourceTree = "<group>";
};
778602AD2186370E0036843F /* Sources */ = {
isa = PBXGroup;
children = (
778602C0218637FB0036843F /* App */,
);
path = Sources;
sourceTree = "<group>";
};
778602C0218637FB0036843F /* App */ = {
isa = PBXGroup;
children = (
778602AE2186370E0036843F /* AppDelegate.swift */,
778602B02186370E0036843F /* ViewController.swift */,
778602B22186370E0036843F /* Main.storyboard */,
778602B52186370F0036843F /* Assets.xcassets */,
778602B72186370F0036843F /* LaunchScreen.storyboard */,
778602BA2186370F0036843F /* Info.plist */,
);
path = App;
sourceTree = "<group>";
};
778602D521863BDD0036843F /* MnemonicKitTests */ = {
778602D521863BDD0036843F /* Tests */ = {
isa = PBXGroup;
children = (
778602DE2186426A0036843F /* vectors.json */,
778602D621863BDD0036843F /* MnemonicKitTests.swift */,
778602D821863BDD0036843F /* Info.plist */,
);
path = MnemonicKitTests;
path = Tests;
sourceTree = "<group>";
};
77CE32B321F16899006ADABA /* Examples */ = {
isa = PBXGroup;
children = (
77CE32B121F16281006ADABA /* MnemonicKitExample.playground */,
);
path = Examples;
sourceTree = "<group>";
};
F8A8C55B21CD4C86005684A3 /* MnemonicKit */ = {
isa = PBXGroup;
children = (
F8DA3F0621DE068F004B016E /* Data+BitArray.swift */,
F8DA3F0321DE068F004B016E /* Language */,
F8DA3F0621DE068F004B016E /* Data+BitArray.swift */,
F8DA3F0121DE068F004B016E /* Mnemonic.swift */,
F8DA3F0221DE068F004B016E /* String+MnemonicData.swift */,
F8A8C55C21CD4C86005684A3 /* MnemonicKit-Swift.h */,
@ -209,25 +148,6 @@
/* End PBXHeadersBuildPhase section */
/* Begin PBXNativeTarget section */
778602AA2186370E0036843F /* MnemonicKitExampleApp */ = {
isa = PBXNativeTarget;
buildConfigurationList = 778602BD2186370F0036843F /* Build configuration list for PBXNativeTarget "MnemonicKitExampleApp" */;
buildPhases = (
778602A72186370E0036843F /* Sources */,
778602A82186370E0036843F /* Frameworks */,
778602A92186370E0036843F /* Resources */,
F8A8C56621CD4C86005684A3 /* Embed Frameworks */,
);
buildRules = (
);
dependencies = (
F8A8C56021CD4C86005684A3 /* PBXTargetDependency */,
);
name = MnemonicKitExampleApp;
productName = MnemonicKit;
productReference = 778602AB2186370E0036843F /* MnemonicKitExampleApp.app */;
productType = "com.apple.product-type.application";
};
77FE006721BDA092009C3CD1 /* MnemonicKitTests */ = {
isa = PBXNativeTarget;
buildConfigurationList = 77FE007221BDA092009C3CD1 /* Build configuration list for PBXNativeTarget "MnemonicKitTests" */;
@ -240,7 +160,6 @@
);
dependencies = (
F8DA3F1821DE0935004B016E /* PBXTargetDependency */,
F8DA3F1621DE0932004B016E /* PBXTargetDependency */,
);
name = MnemonicKitTests;
productName = MnemonicKitTests2;
@ -279,9 +198,6 @@
LastUpgradeCheck = 1000;
ORGANIZATIONNAME = "Keefer Taylor";
TargetAttributes = {
778602AA2186370E0036843F = {
CreatedOnToolsVersion = 10.0;
};
77FE006721BDA092009C3CD1 = {
CreatedOnToolsVersion = 10.1;
};
@ -304,7 +220,6 @@
projectDirPath = "";
projectRoot = "";
targets = (
778602AA2186370E0036843F /* MnemonicKitExampleApp */,
F8A8C55921CD4C86005684A3 /* MnemonicKit */,
77FE006721BDA092009C3CD1 /* MnemonicKitTests */,
);
@ -312,16 +227,6 @@
/* End PBXProject section */
/* Begin PBXResourcesBuildPhase section */
778602A92186370E0036843F /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
778602B92186370F0036843F /* LaunchScreen.storyboard in Resources */,
778602B62186370F0036843F /* Assets.xcassets in Resources */,
778602B42186370E0036843F /* Main.storyboard in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
77FE006621BDA092009C3CD1 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
@ -363,15 +268,6 @@
/* End PBXShellScriptBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
778602A72186370E0036843F /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
778602B12186370E0036843F /* ViewController.swift in Sources */,
778602AF2186370E0036843F /* AppDelegate.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
77FE006421BDA092009C3CD1 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
@ -395,16 +291,6 @@
/* End PBXSourcesBuildPhase section */
/* Begin PBXTargetDependency section */
F8A8C56021CD4C86005684A3 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = F8A8C55921CD4C86005684A3 /* MnemonicKit */;
targetProxy = F8A8C55F21CD4C86005684A3 /* PBXContainerItemProxy */;
};
F8DA3F1621DE0932004B016E /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = 778602AA2186370E0036843F /* MnemonicKitExampleApp */;
targetProxy = F8DA3F1521DE0932004B016E /* PBXContainerItemProxy */;
};
F8DA3F1821DE0935004B016E /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = F8A8C55921CD4C86005684A3 /* MnemonicKit */;
@ -412,25 +298,6 @@
};
/* End PBXTargetDependency section */
/* Begin PBXVariantGroup section */
778602B22186370E0036843F /* Main.storyboard */ = {
isa = PBXVariantGroup;
children = (
778602B32186370E0036843F /* Base */,
);
name = Main.storyboard;
sourceTree = "<group>";
};
778602B72186370F0036843F /* LaunchScreen.storyboard */ = {
isa = PBXVariantGroup;
children = (
778602B82186370F0036843F /* Base */,
);
name = LaunchScreen.storyboard;
sourceTree = "<group>";
};
/* End PBXVariantGroup section */
/* Begin XCBuildConfiguration section */
778602BB2186370F0036843F /* Debug */ = {
isa = XCBuildConfiguration;
@ -548,52 +415,6 @@
};
name = Release;
};
778602BE2186370F0036843F /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CODE_SIGN_STYLE = Automatic;
DEVELOPMENT_TEAM = 6F6VXZUKN5;
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
"$(PROJECT_DIR)/Carthage/Build/iOS",
);
INFOPLIST_FILE = "$(SRCROOT)/Sources/App/Info.plist";
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
);
PRODUCT_BUNDLE_IDENTIFIER = com.keefertaylor.MnemonicKit;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 4.2;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Debug;
};
778602BF2186370F0036843F /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CODE_SIGN_STYLE = Automatic;
DEVELOPMENT_TEAM = 6F6VXZUKN5;
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
"$(PROJECT_DIR)/Carthage/Build/iOS",
);
INFOPLIST_FILE = "$(SRCROOT)/Sources/App/Info.plist";
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
);
PRODUCT_BUNDLE_IDENTIFIER = com.keefertaylor.MnemonicKit;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 4.2;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Release;
};
77FE007021BDA092009C3CD1 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
@ -603,14 +424,14 @@
"$(PROJECT_DIR)/Carthage/Build/iOS",
"$(inherited)",
);
INFOPLIST_FILE = MnemonicKitTests/Info.plist;
INFOPLIST_FILE = Tests/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 12.1;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
PRODUCT_BUNDLE_IDENTIFIER = com.keefertaylor.MnemonicKitTests2;
PRODUCT_BUNDLE_IDENTIFIER = com.keefertaylor.MnemonicKit.Tests;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 4.2;
TARGETED_DEVICE_FAMILY = "1,2";
@ -626,14 +447,14 @@
"$(PROJECT_DIR)/Carthage/Build/iOS",
"$(inherited)",
);
INFOPLIST_FILE = MnemonicKitTests/Info.plist;
INFOPLIST_FILE = Tests/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 12.1;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
PRODUCT_BUNDLE_IDENTIFIER = com.keefertaylor.MnemonicKitTests2;
PRODUCT_BUNDLE_IDENTIFIER = com.keefertaylor.MnemonicKit.Tests;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 4.2;
TARGETED_DEVICE_FAMILY = "1,2";
@ -725,15 +546,6 @@
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
778602BD2186370F0036843F /* Build configuration list for PBXNativeTarget "MnemonicKitExampleApp" */ = {
isa = XCConfigurationList;
buildConfigurations = (
778602BE2186370F0036843F /* Debug */,
778602BF2186370F0036843F /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
77FE007221BDA092009C3CD1 /* Build configuration list for PBXNativeTarget "MnemonicKitTests" */ = {
isa = XCConfigurationList;
buildConfigurations = (

View File

@ -1,26 +0,0 @@
// Copyright Keefer Taylor, 2018
import UIKit
import MnemonicKit
@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {
var window: UIWindow?
func application(_: UIApplication, didFinishLaunchingWithOptions _: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
let viewController = ViewController()
let window = UIWindow()
window.rootViewController = viewController
self.window = window
window.makeKeyAndVisible()
if let mnemonic = Mnemonic.generateMnemonic(strength: 64) {
let alert = UIAlertController(title: "Generated Mnemonic", message: mnemonic, preferredStyle: .alert)
alert.addAction(UIAlertAction(title: NSLocalizedString("OK", comment: "OK"), style: .default, handler: nil))
viewController.present(alert, animated: true, completion: nil)
}
return true
}
}

View File

@ -1,98 +0,0 @@
{
"images" : [
{
"idiom" : "iphone",
"size" : "20x20",
"scale" : "2x"
},
{
"idiom" : "iphone",
"size" : "20x20",
"scale" : "3x"
},
{
"idiom" : "iphone",
"size" : "29x29",
"scale" : "2x"
},
{
"idiom" : "iphone",
"size" : "29x29",
"scale" : "3x"
},
{
"idiom" : "iphone",
"size" : "40x40",
"scale" : "2x"
},
{
"idiom" : "iphone",
"size" : "40x40",
"scale" : "3x"
},
{
"idiom" : "iphone",
"size" : "60x60",
"scale" : "2x"
},
{
"idiom" : "iphone",
"size" : "60x60",
"scale" : "3x"
},
{
"idiom" : "ipad",
"size" : "20x20",
"scale" : "1x"
},
{
"idiom" : "ipad",
"size" : "20x20",
"scale" : "2x"
},
{
"idiom" : "ipad",
"size" : "29x29",
"scale" : "1x"
},
{
"idiom" : "ipad",
"size" : "29x29",
"scale" : "2x"
},
{
"idiom" : "ipad",
"size" : "40x40",
"scale" : "1x"
},
{
"idiom" : "ipad",
"size" : "40x40",
"scale" : "2x"
},
{
"idiom" : "ipad",
"size" : "76x76",
"scale" : "1x"
},
{
"idiom" : "ipad",
"size" : "76x76",
"scale" : "2x"
},
{
"idiom" : "ipad",
"size" : "83.5x83.5",
"scale" : "2x"
},
{
"idiom" : "ios-marketing",
"size" : "1024x1024",
"scale" : "1x"
}
],
"info" : {
"version" : 1,
"author" : "xcode"
}
}

View File

@ -1,6 +0,0 @@
{
"info" : {
"version" : 1,
"author" : "xcode"
}
}

View File

@ -1,25 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="13122.16" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" launchScreen="YES" useTraitCollections="YES" useSafeAreas="YES" colorMatched="YES" initialViewController="01J-lp-oVM">
<dependencies>
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="13104.12"/>
<capability name="Safe area layout guides" minToolsVersion="9.0"/>
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
</dependencies>
<scenes>
<!--View Controller-->
<scene sceneID="EHf-IW-A2E">
<objects>
<viewController id="01J-lp-oVM" sceneMemberID="viewController">
<view key="view" contentMode="scaleToFill" id="Ze5-6b-2t3">
<rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
<viewLayoutGuide key="safeArea" id="6Tk-OE-BBY"/>
</view>
</viewController>
<placeholder placeholderIdentifier="IBFirstResponder" id="iYj-Kq-Ea1" userLabel="First Responder" sceneMemberID="firstResponder"/>
</objects>
<point key="canvasLocation" x="53" y="375"/>
</scene>
</scenes>
</document>

View File

@ -1,24 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="13122.16" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" useSafeAreas="YES" colorMatched="YES" initialViewController="BYZ-38-t0r">
<dependencies>
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="13104.12"/>
<capability name="Safe area layout guides" minToolsVersion="9.0"/>
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
</dependencies>
<scenes>
<!--View Controller-->
<scene sceneID="tne-QT-ifu">
<objects>
<viewController id="BYZ-38-t0r" customClass="ViewController" customModuleProvider="target" sceneMemberID="viewController">
<view key="view" contentMode="scaleToFill" id="8bC-Xf-vdC">
<rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
<viewLayoutGuide key="safeArea" id="6Tk-OE-BBY"/>
</view>
</viewController>
<placeholder placeholderIdentifier="IBFirstResponder" id="dkx-z0-nzr" sceneMemberID="firstResponder"/>
</objects>
</scene>
</scenes>
</document>

View File

@ -1,45 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>$(DEVELOPMENT_LANGUAGE)</string>
<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIdentifier</key>
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>$(PRODUCT_NAME)</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleVersion</key>
<string>1</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>UILaunchStoryboardName</key>
<string>LaunchScreen</string>
<key>UIMainStoryboardFile</key>
<string>Main</string>
<key>UIRequiredDeviceCapabilities</key>
<array>
<string>armv7</string>
</array>
<key>UISupportedInterfaceOrientations</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
<key>UISupportedInterfaceOrientations~ipad</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationPortraitUpsideDown</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
</dict>
</plist>

View File

@ -1,5 +0,0 @@
// Copyright Keefer Taylor, 2018
import UIKit
class ViewController: UIViewController {}