Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.
Finally~

Finally i had solved my problem:)

here`s the code
Code:
//In touch event
- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event
{
	UITouch*	touch = [touches anyObject];
	EFlicked flicked = [self wasFlicked:touch];  // flick check

	//goto 2nd View
	ViewSecond *second = [[ViewSecond alloc] initWithNibName:nil
										bundle:nil];
					     [self presentModalViewController:second
						   			    animated:YES];
}
 
Hmm, what kind of class is EFlicked? Also, you set flicked but then never use it. Plus, what is wasFlicked:? That's not a standard method name.
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.