uiswipegesturerecognizer Questions

20

Solved

I need to use swipe to recognize swipe gesture down and then right. But on swift UISwipeGestureRecognizer has predeterminate Right direction.. And I don't know how make this for use other direction...
Conditioner asked 13/6, 2014 at 23:33

4

Solved

So Im making a page with pageControl (it's a page with multiple views with dots indicating which page you're in), my code looks like the following in viewDidLoad: UISwipeGestureRecognizer *swipe =...
Joanniejoao asked 16/6, 2014 at 17:34

0

we have used the page view controller to show the swipe to instruct the user to login instruction, we are facing core foundation crash and below is the stack trace and code snippet: StackTrace: F...

4

Solved

i need to detect direction of my swipe gesture and i've got problem with it. gesture is working, but i don't know how to detect direction. ... swipeGesture = [[UISwipeGestureRecognizer alloc] in...

4

Solved

I have a WebView in my app. Because it is a tabbed application I'm not able to add buttons for going back/forward on the website. I want to go back/forward by swiping. Right swipe from the left s...
Illuminance asked 14/8, 2015 at 14:26

3

Solved

I'm trying to display a pdf on ios via apples PDFKit library, and rather than use PDFDisplayMode.singlePageContinuous mode, I want to stop at page breaks so I'm trying to use PDFDisplayMode.singleP...
Incomplete asked 12/3, 2019 at 4:16

2

Solved

I need to perform a specific action when the user swipes the uicollectionview. I built it in a way that each cell captures the full screen. I tried those ways: A. scrollViewDidEndDecelerating # ...
Monophthong asked 7/10, 2013 at 18:58

3

Solved

I have UIViewController and I have added a UITableView to it in the storyboard, later I added a swipe Up gesture recognizer to the view, but nothing happened. this is my code import UIKit class...
Baneful asked 2/6, 2017 at 11:30

3

Solved

Does anyone know what is going on with this problem? My cell stop swiping because of this. [Assert] Unexpected nil index path in _shouldShowMenuForCell:, this should never happen. Cell ; baseCl...
Tallbott asked 27/9, 2017 at 7:8

3

Solved

I am developing an application where I have used the Pan Gesture as well as Swipe Gesture. So every time I do the Swipe Gesture but the method from the Pan Gesture is always getting called and Swip...

3

Following is the code I have written to put 2 finger swipe on UITableView : UISwipeGestureRecognizer *leftSwipe = [UISwipeGestureRecognizer new]; [leftSwipe addTarget:self action:@selector(nextDa...

2

Solved

i'm trying to use the interactivepopgesturerecognizer to go back in a view in which i have also a UICollectionView with horizontal scrolling, and the problem is that in the frame of the collection ...

13

Solved

I have a UIViewController that implements TableViews delegate and datasource protocols. Now I want to add "swipe to delete" gesture to cells. How should I go about it. I have given a blank implem...
Salesperson asked 24/1, 2012 at 6:59

12

Solved

I want to add simple swipe gesture recognition to my view based iPhone project. Gestures in all directions (right, down, left, up) should be recognized. It is stated in the docs for UISwipeGesture...
Frogfish asked 23/7, 2010 at 14:39

2

Hi I checked many questions regarding swiping in SO but have doubts . In my app I have two pages 1. user view controller 2. question view controller user page looks like this now what i want t...
Queenqueena asked 27/1, 2016 at 10:40

1

I want to add two fingers swipe up and down gestures in UITableView. The idea is to scroll through the cells using one finger pan gesture and do some other action by using two fingers swipe up/down...

1

Solved

I have a view that contains a counter. I have implemented two different gesture recognizers, a UISwipeGesture to increase the count by one, and a UIPanGesture in order to increase the count by...

1

I've looked many, many places and have yet to find some good sample code showing how to pre-load the "next" page in a UIPageViewController. There are a few answers on SO detailing some theoretical ...
Brenner asked 26/2, 2013 at 17:24

8

Solved

I need to recognize swipes in all directions (Up/Down/Left/Right). Not simultaneously, but I need to recognize them. I tried: UISwipeGestureRecognizer *Swipe = [[UISwipeGestureRecognizer alloc] ...

7

i am using SwipeRefreshLayout in my below layout: <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="wr...

5

Solved

I'm writing code to move my two fingers up or down on a view to change some status. The code as below: UISwipeGestureRecognizer *aSwipeGesture = [[UISwipeGestureRecognizer alloc] initWithTarget:se...
Sluiter asked 24/4, 2013 at 6:7

3

Solved

I have read a bunch of questions on this but none of them seem to achieve what I am looking for... So lets say I have an arbitrary UIWebView inside of a UIViewController. The UIViewController has a...
Dagny asked 8/8, 2012 at 16:48

1

Solved

I am using UIPageControl and UISwipeGestureRecognizer to switch between 2 view controllers of my application. I have modified this tutorial without using scroll view. I have 2 issues: 1) Using th...

1

Solved

I'm trying to segue back to (QueryController) the view i came from. But no swipe actions occurs... Not sure what im missing. @implementation ProfileController4 - (id)initWithNibName:(NSString ...
Iives asked 8/1, 2014 at 5:17

3

Solved

I added this code in cellForRowAtIndexPath UISwipeGestureRecognizer *gestureR = [[UISwipeGestureRecognizer alloc] initWithTarget:self action:@selector(handleSwipeFrom:)]; [gestureR setDirection:...
Coprophilous asked 19/12, 2011 at 16:16

© 2022 - 2024 — McMap. All rights reserved.