forked from romansorochak/ParallaxHeader
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- update test project to support Swift4 \n-update pod version to 2.0
- Loading branch information
1 parent
43330d9
commit 8685592
Showing
5 changed files
with
57 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
// | ||
// CollectionView.swift | ||
// ParallaxHeader | ||
// | ||
// Created by Roman Sorochak on 7/11/17. | ||
// Copyright © 2017 MagicLab. All rights reserved. | ||
// | ||
|
||
import UIKit | ||
|
||
|
||
class CollectionView: UICollectionView { | ||
|
||
|
||
override func touchesMoved(_ touches: Set<UITouch>, with event: UIEvent?) { | ||
super.touchesMoved(touches, with: event) | ||
|
||
print("CollectionView: touchesMoved") | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
// | ||
// TableView.swift | ||
// ParallaxHeader | ||
// | ||
// Created by Roman Sorochak on 7/11/17. | ||
// Copyright © 2017 MagicLab. All rights reserved. | ||
// | ||
|
||
import UIKit | ||
|
||
|
||
class TableView: UITableView { | ||
|
||
|
||
override func touchesMoved(_ touches: Set<UITouch>, with event: UIEvent?) { | ||
print("TableView: touchesMoved") | ||
|
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters