Browse Source

Remove tap gesture recognizer

master
Dwayne Harris 6 years ago
parent
commit
f246512c63
  1. 8
      elpha-ios/Base.lproj/Main.storyboard
  2. 4
      elpha-ios/TimelinesViewController.swift

8
elpha-ios/Base.lproj/Main.storyboard

@ -1030,9 +1030,6 @@
<constraint firstItem="ZOW-xe-PU2" firstAttribute="leading" secondItem="1Oi-SN-Jgn" secondAttribute="leading" constant="40" id="QAb-e6-ttN"/>
<constraint firstAttribute="bottom" secondItem="ZOW-xe-PU2" secondAttribute="bottom" constant="50" id="hTu-st-Y8M"/>
</constraints>
<connections>
<outletCollection property="gestureRecognizers" destination="Ify-ES-32h" appends="YES" id="Kmp-e4-Lz0"/>
</connections>
</view>
<blurEffect style="light"/>
</visualEffectView>
@ -1051,11 +1048,6 @@
</connections>
</viewController>
<placeholder placeholderIdentifier="IBFirstResponder" id="4Ao-Vi-HOQ" userLabel="First Responder" sceneMemberID="firstResponder"/>
<tapGestureRecognizer id="Ify-ES-32h">
<connections>
<action selector="dismissTapped:" destination="TVm-XQ-DKr" id="vkn-p5-igU"/>
</connections>
</tapGestureRecognizer>
</objects>
<point key="canvasLocation" x="1632.8" y="-1094.3349753694581"/>
</scene>

4
elpha-ios/TimelinesViewController.swift

@ -19,10 +19,6 @@ class TimelinesViewController: UIViewController {
var delegate: TimelinesViewControllerDelegate? = nil
var fetchedResultsController: NSFetchedResultsController<TimelineMO>? = nil
@IBAction func dismissTapped(_ sender: Any) {
dismiss(animated: true)
}
override func viewDidLoad() {
super.viewDidLoad()

Loading…
Cancel
Save