UISwipeGestureRecognizer is a concrete subclass of UIGestureRecognizer that looks for swiping gestures in one or more directions. A swipe is a discrete gesture, and thus the associated action message is sent only once per gesture.
0
votes
1answer
30 views
Detecting a swipe that started outside of Gesture Recognizer object's area
I am trying to detect swipes in a very specific way, and am having mixed results. My first problem was recognizing swipes in only a certain region of the screen, which is now solved. My current ...
1
vote
4answers
85 views
Swipegesture Recognize in IOS
I am new to iOS.
I am developing an app where I have 2 NSMutableArray. I want to load the array images into ImageView.
I want to take the first image and add it to an ImageView. When the use swipes ...
0
votes
1answer
9 views
UISwitch is firing UISwipeGestureRecognizer
I'm setting a gesture recognizer (swipe right) on a view like this:
[self.currentViewController.view addGestureRecognizer:self.swipeRecognizer];
However, the view has some UIControls that respond ...
1
vote
5answers
111 views
Swipe Gesture Not Working
i wanted to swipe my image view but not swapped to left side.
i get image from frontcard array. and i wanted to display in imageview and swipe verticlally.
I tried this one
FrontsCards ...
0
votes
0answers
32 views
Gesture Recognizer memory usage
I am adding several different swipe gestures to my app and I'm wondering if it would be better to just add one and query it for how many fingers, direction, etc.
By adding several distinct gesture ...
0
votes
2answers
27 views
UIGestureRecognizer Crash
I am add to put a swipe up gesture to an image, but when swiped, app craches with BAD_EXEC error.
This is what I have:
.h file:
@interface MyViewController : UIViewController ...
0
votes
2answers
51 views
UIButton TouchUpInside/TouchUpOutside not always called?
I have a UISwipeGestureRecognizer that animates accordingly to which UIButton is highlighted at the time of the gesture, it finishes the animation when the UIButton calls TouchUpInside/TouchUpOutside. ...
0
votes
1answer
19 views
touchesEnded not getting called when combined with UIButton?
I've implemented that when the my UIButton is highlighted and my UISwipeGestureRecognizer recognizes the gesture it will begin an animation. The problem is I want to end the animation when ...
0
votes
2answers
55 views
How to swipe using UISwipeGestureRecognizer to slide in and refresh the SAME uitableview [closed]
I wish to update the UITableView's using a UISwipeGestureRecognizer's swipe... and make it look like it is sliding in from right (or left) then simply refresh the CURRENT UITableView's data with the ...
0
votes
1answer
95 views
Xcode: How do I change UIPageControl value with swipe gesture?
I have a quick question I was hoping you guys could help me answer. Right now I have a UIPageControl in a storyboard which changes an image depending on what dot you are on, however, as of now you ...
0
votes
1answer
17 views
UIGestureRecognizer Issue: trying to navigate backwards
Trying to make it so if the user swipes left, the app will navigate backwards. Lately the only success I've had is if I specify the UITableView; if a cell is already selected and then a swipe occurs ...
0
votes
1answer
35 views
changing transition of swipe gesture recognizers
I've set up some swipe gesture recognizers in the storyboard to move between view controllers. There are 4 view controllers, swipe left in 1 to go to 2, swipe left in 2 to go to 3 or swipe right in 2 ...
2
votes
0answers
76 views
Making iOS two finger swipe similar to apple's four finger swipe to toggle between apps
Hi all we all know iOS four finger swipe to toggle between apps
I am planning to do something similar, when I do a two finger swipe I will be doing the same thing as the four finger swipe but ...
0
votes
3answers
63 views
Couldn't get UISwipeGestureRecognizer direction correctly
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:self ...
1
vote
1answer
48 views
how to swipe across UINavigationController tree leaves without pushing?
This app provides 6 screens of detail form input that are accessed through a master table view using a UINavigationController.
So the user starts are the master screen used as a menu, and drills ...
1
vote
2answers
144 views
How to swipe tableviewcell for particular row in a section
I have a custom UITableview which is diveded into sections, I have implemented UISwipeGestureRecognizer into it. When I swipe my table view cell, a UIButton appears. The problem I am now facing is ...
0
votes
1answer
71 views
Two finger UISwipeGestureRecognizer with UITableView
I'm looking to add a gesture recognizer to UITableView that uses two finger up or down, like Twitterific has for toggling the status bar.
Here's my code
[self.tableView setMultipleTouchEnabled:YES];
...
2
votes
1answer
80 views
How to implement a swipe and hold gesture recognizer?
I have two gesture recognizers that recognize a swipe right gesture and a long press gesture. I tried to use the delegate method gestureRecognizer:shouldRecognizeSimultaneouslyWithGestureRecognizer: ...
0
votes
1answer
65 views
How to disable swipe in particular direction on UITableViewCell in iOS?
I have implemented swipe-to-delete option in my table view by adding the following two methods:
- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath
{
return ...
0
votes
1answer
53 views
frame by frame animation with UIGestureRecognizer
I would like to show an animation with images of an object rotating.
I have an NSArray with frames of the object and I would like to display them frame by frame with the property of UIImageView ...
0
votes
1answer
21 views
UISwipeGestureRecognizer control brightness
I'm looking to create a UISwipeGestureRecognizer which is attached to my UIView. What I want to achieve allows the user to swipe their finger across the screen and set the brightness of the screen.
...
0
votes
0answers
68 views
IOS - swipe up/down between to navigate to another UITableview?
I've a UIViewController that hosts a UITableview.
I would like to navigate to another UITableview when the user drags up or down the current UITableview with the same effect than the PullToRefresh ...
0
votes
1answer
50 views
UIWebview with SwipeGestureRecognizer
I have an UIWebview, when user taps a UIButton, my webview will be loaded. I have an 10 HTML files in bundle i want to show the first html in webview and when user **swipes** i want to show the next ...
0
votes
1answer
78 views
How do I change background color using Swipe Gesture
I have an array set up with my colors, but when I swipe the view it always changes the color to the last item in the array.
What am I missing? Is my for loop set up correctly?
Here's my code:
- ...
3
votes
1answer
155 views
custom swipe method for iOS?
How can I show all content from my tableview or my core data in another view controller with SWIPE METHOD for iOS?
Well this time I need to know how I can show all content or all object class from my ...
0
votes
0answers
52 views
UISwipeGestureRecognizer throws off EXC_BAD_ACCESS
I have a view that I'm designing with XIB file, and writing a regular class that inherits from UIView, as normal. I need to add swipe functionality to the view. First, yes, I've user interaction ...
0
votes
0answers
55 views
How does UISwipeGestureRecognizer works on UIScrollView
I have a tableview in a scrollview's one page, I add a swipeGesture(left) on the tableview, but it seems when I swipe on the tableview my code can't go into the swipeGesture action.
the tableview and ...
0
votes
0answers
63 views
Detect SwipeGesture in a TableView while (vertical) scrolling a ScrollView
I've got a ScrollView with two (vertical) pages. In the first one, I created a TableView and in the second one I want to show "details". My intent is to swipe above a special cell and while scrolling ...
0
votes
0answers
43 views
Save Checkmark State UItableview
Struggling. UISwipeGesture toggles a checkmark image without issue. However, I cannot figure out how to save the state. I am playing around with saving a mutable array (accessoryStyle) to ...
2
votes
3answers
72 views
swipe guesture for tableview
I have added tableview as subview and I have added swipe gesture to tableview. Swipe is not working. Pan gesture is working fine (just tested). Swipe gesture it not working. I wanna move the table to ...
0
votes
1answer
124 views
SwipeGestureRecognizer is not working after using PanGesture
I am using PanGestureRecognizer to my self.view and UISwipeGestureRecognizer in my UITableView.
I have added UITableView as subview in self.view.
Now UISwipeGesture is not working.
But if i disable ...
1
vote
0answers
98 views
Preload next page in UIPageViewController
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 ...
0
votes
2answers
118 views
Disable “Shows Touch On Highlight” on Swipe Gesture Recognizer
I have a bar with 8 different UIButton on it. Each UIButton has the "Shows Touch On Highlight" attribute checked. Not all 8 buttons are shown at the same time.
I split them into two groups of 4 ...
2
votes
1answer
222 views
Adding a UIGestureRecognizer to a UITableViewCell
I used http://www.raywenderlich.com/21842/how-to-make-a-gesture-driven-to-do-list-app-part-13 to add a gesture recognizer to my cells, so that i can move them from left to right, but i get this error:
...
0
votes
2answers
101 views
iOS working with multiple swipe recognizers
I have right and left swipe recognizers on my view, and a table.There is a problem when user swipes left||right on table view, table handle them and swipes table content instead of execution of ...
0
votes
0answers
49 views
Swipe Gesture Recognizer
How does this can be done?
I'm using touchsBegan, touchesMoved, touchesEnded events.
I want to use the same functionality using UISwipeGestureRecognizer class.
Help me.
Soma Sekhar
1
vote
1answer
107 views
iOS UIGestureRecognizer
I have two questions:
Can I implement gesture recogniser that inherits from UISwipeGestureRecognizer and add logic to the UIEvent handlers?
Can I implement UIGestureRecognizer without attaching it ...
0
votes
1answer
120 views
SwipeGesture in Iphone Cocos2d
I am using UISwipeGestureRecognizer to get swipe gesture in iPhone. i want to get 2 location points on Began of swipe touch and on end of swipe touch. i have implemented swipe touch method as below
- ...
0
votes
3answers
91 views
UISwipeGesture is not working on the view which listens touchesBegan
I am using a star rating control.
https://github.com/erndev/EDStarRating
What I need is, when the user swipe left on that controller, a method is fired. There fore I added a swipe gesture on that ...
0
votes
1answer
76 views
Swipeable controls in UIWebView
In my application, I have a file viewer that displays multiple types of content (images, pdf, text, etc) in a UIWebView.
I have swipe controls for flipping to the next page, and these generally work ...
0
votes
2answers
55 views
Get touch position while swiping
anyone is aware of a way to get the current touch position (not start or end position) while user is swiping?
Something like the
-(void)scrollViewDidScroll:(UIScrollView *)scrollView{
...
0
votes
1answer
22 views
Using two gestureRecognizers continuously without break
In my app, i have to implement two UIswipegesturerecognizers (left and right) one after another without removing the finger from screen.
What i have right now is user needs to swipe left and then ...
1
vote
2answers
252 views
Using SwipeGester to swap views(of the same instance) - screenshot inside
Here is a screenshot of a view that I have right on my device.
The design issue that I am having here is that the top part of the screen is always going to be static - as far as its placement. The ...
0
votes
0answers
64 views
Controlling Swipe speed in iphone app
In my Webview I have to implement swipe gesture,if i swipe up it must fire an event.
But i need to control the the swipe speed,the action must not fire,if user swipe slowly(ie-it must be a scrolling ...
0
votes
1answer
268 views
How to swipe out of table view controller (not the cells) - iPhone
I have a tab bar app. It has 5 tabs. I have the 3rd tab connected to a navigation controller that's connected to a table view controller. Simple enough, right?
Well, I recently decided to implement ...
0
votes
1answer
105 views
Trying to get OnFling to work
I know there are plenty of questions regarding this topic. I've had a look at most of them, but still I'm not able to debug my code. It does not detect swipes. I'm a beginner to both Android ...
0
votes
1answer
299 views
How to implement swipe gesture on half view and pan gesture on other half view?
How to add a pan gesture to first half (0,0,160,480) of a view and on same view a swipe gesture on (160,0,160,480) as well?
The view is table view and on swiping left the cell content should change ...
1
vote
2answers
178 views
'Adapt' my current UISwipeGestureRecognizer code for flicking through images to an iPhoto style utilising UIPanGestureRecognizer
I use the following code to swipe left and right with a UISwipeGestureRecognizer to show photos in my app in a similar way to iPhoto.
CATransition *animation = [CATransition animation];
...
0
votes
3answers
105 views
Add UIGestureRecognizer to individual letters of UILabel
Right Now I am making an iOS app and I would like to implement the ability to remove letters in a UILabel by simply "Dropping the letter". The part That I am having an issue with is adding a gesture ...
1
vote
1answer
150 views
UISwipeGestureRecognizer not firing
I have a UISwipeGestureRecognizer setup in IB linked to my view like so:
Extremely trivial, done it a million times. However this time it never fires >:|
Here is my method that should be called ...







