¡@

Home 

2014/10/15 ¤U¤È 10:13:41

iphone Programming Glossary: second2

How to swap views using a swipe gesture XCode

http://stackoverflow.com/questions/5684099/how-to-swap-views-using-a-swipe-gesture-xcode

method to switch views using a button with Modal Transitioning see below IBAction swapViews SecondViewController second2 SecondViewController alloc initWithNibName @ SecondViewController bundle nil second2.modalTransitionStyle UIModalTransitionStyleCoverVertical.. swapViews SecondViewController second2 SecondViewController alloc initWithNibName @ SecondViewController bundle nil second2.modalTransitionStyle UIModalTransitionStyleCoverVertical self presentModalViewController second2 animated YES second2 release.. bundle nil second2.modalTransitionStyle UIModalTransitionStyleCoverVertical self presentModalViewController second2 animated YES second2 release Is using a swipe to do a similar method formatted differently If so how do I sort this out..