Skip to content

Commit

Permalink
Merged PR piemonte#180
Browse files Browse the repository at this point in the history
  • Loading branch information
chriszielinski committed Jun 21, 2018
2 parents 8df8877 + ce0341a commit 3a7a177
Show file tree
Hide file tree
Showing 4 changed files with 220 additions and 92 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?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>IDEDidComputeMac32BitWarning</key>
<true/>
</dict>
</plist>
Original file line number Diff line number Diff line change
Expand Up @@ -20,20 +20,6 @@
ReferencedContainer = "container:Player.xcodeproj">
</BuildableReference>
</BuildActionEntry>
<BuildActionEntry
buildForTesting = "YES"
buildForRunning = "YES"
buildForProfiling = "NO"
buildForArchiving = "NO"
buildForAnalyzing = "YES">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "065A0FB11A25C8E2005BA7BC"
BuildableName = "PlayerTests.xctest"
BlueprintName = "PlayerTests"
ReferencedContainer = "container:Player.xcodeproj">
</BuildableReference>
</BuildActionEntry>
</BuildActionEntries>
</BuildAction>
<TestAction
Expand All @@ -42,16 +28,6 @@
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
shouldUseLaunchSchemeArgsEnv = "YES">
<Testables>
<TestableReference
skipped = "NO">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "065A0FB11A25C8E2005BA7BC"
BuildableName = "PlayerTests.xctest"
BlueprintName = "PlayerTests"
ReferencedContainer = "container:Player.xcodeproj">
</BuildableReference>
</TestableReference>
</Testables>
<MacroExpansion>
<BuildableReference
Expand Down
4 changes: 2 additions & 2 deletions Project/Player/ViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,6 @@ class ViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()

player.add(to: self)

// Optional
player.playerDelegate = self
// Optional
Expand All @@ -57,6 +55,8 @@ class ViewController: UIViewController {

player.playbackLoops = true

player.add(to: self)

let tapGestureRecognizer = UITapGestureRecognizer(target: self,
action: #selector(handleTapGestureRecognizer(_:)))
tapGestureRecognizer.numberOfTapsRequired = 1
Expand Down
Loading

0 comments on commit 3a7a177

Please sign in to comment.