Skip to content

Commit

Permalink
demo bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
bugkingK committed Oct 1, 2019
1 parent 72bbc1f commit 8aa4014
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 22 deletions.
1 change: 1 addition & 0 deletions Demo/Demo/Base.lproj/Main.storyboard
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@
</view>
<connections>
<outlet property="vwCircle" destination="Ofr-27-vzd" id="xIT-cr-n0i"/>
<outlet property="vwCircleTic" destination="BKB-br-vWE" id="q15-0d-hfD"/>
</connections>
</viewController>
<placeholder placeholderIdentifier="IBFirstResponder" id="dkx-z0-nzr" sceneMemberID="firstResponder"/>
Expand Down
19 changes: 0 additions & 19 deletions Demo/Demo/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -20,25 +20,6 @@
<string>1</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>UIApplicationSceneManifest</key>
<dict>
<key>UIApplicationSupportsMultipleScenes</key>
<false/>
<key>UISceneConfigurations</key>
<dict>
<key>UIWindowSceneSessionRoleApplication</key>
<array>
<dict>
<key>UISceneConfigurationName</key>
<string>Default Configuration</string>
<key>UISceneDelegateClassName</key>
<string>$(PRODUCT_MODULE_NAME).SceneDelegate</string>
<key>UISceneStoryboardFile</key>
<string>Main</string>
</dict>
</array>
</dict>
</dict>
<key>UILaunchStoryboardName</key>
<string>LaunchScreen</string>
<key>UIMainStoryboardFile</key>
Expand Down
7 changes: 4 additions & 3 deletions Demo/Demo/ViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import BKCountDownTimer
class ViewController: UIViewController {

@IBOutlet weak var vwCircle:CircleCount!
@IBOutlet weak var vwCircleTic:CircleTic!

override func viewDidLoad() {
super.viewDidLoad()
Expand All @@ -23,15 +24,15 @@ class ViewController: UIViewController {
print("complete")
}

vwCircle.touchBeginEvent = {
vwCircleTic.touchBeginEvent = {
print("touch")
}

vwCircle.touchEndedEvent = {
vwCircleTic.touchEndedEvent = {
print("end")
}

vwCircle.touchMovedEvent = {
vwCircleTic.touchMovedEvent = {
print("move")
}
}
Expand Down

0 comments on commit 8aa4014

Please sign in to comment.