Tagged Questions
0
votes
2answers
72 views
Why's This Making an Infinite Loop?
I am having a problem with gesture recognition in a subview of a UIView. My subview is a view that will be draggable through a UIPanGestureRecognizer - I know that part works. But I'm having a problem ...
0
votes
3answers
101 views
What notification do I get when a view appears in iphone?
I want to know what notification would I get in my CustomView class when this view will be displayed on screen.
CustomView *customView = [[CustomView alloc] init];
[self.view addSubview:customView];
...
0
votes
1answer
1k views
InfinitePagingView infinite loop in uiscrollview
I'm using an InfinitePagingView from here.
I am searching for a way to modify the class so that the InfinitePagingView will be infinite to the left, too. As it is, it is only infinite when scrolling ...
0
votes
2answers
482 views
NSScanner never reaches “isAtEnd” or don't scann full string
I've got an issue making scanner working for this particular string.
here comes the code :
tempString = @"30.15 in. Hg (1021 hPa)";
scanner = [NSScanner scannerWithString:tempString]; //setting the ...
1
vote
1answer
2k views
animations on infinite loop
I have 5 different animations that animate then disappear one after another. Is there a way to put them on an infinite loop so animation #1 begins and ends, then anim #2 begins and ends etc..? the ...
1
vote
3answers
5k views
What is the best way to make a bouncing ball animation with infinite loop on iPhone?
I am developing an iPhone game in which birds bounce like in this game: http://www.students.uni-mainz.de/rathb000/Fillit/Game.html
I have set up the images for animating the wings of the flying bird ...
