How to create a simple navigation with Storyboard and UINavigationController. In this tutorial I create a navigation from views without write code.
The last uiviewcontroller will appear with a modal presentation (from bottom) so it's without navigation bar and back button. If you want dismiss this uiviewcontroller, you must implement the dismissModalViewControllerAnimated: method in your code. Optionally you can use a push presentation and evict this.
Do you want swipe to the initial rootviewcontroller? if your answer is YES well you have 2 options to POP your viewcontroller in the navigation-stack and show the first viewcontroller.
1 write code: create a right swipe gesture and when the swipe is fired, use [self.navigationController popToRootViewControllerAnimated:YES]; THERE IS A GESTURE EXAMPLE HERE alturlDOTcom/g9rwp (replace DOT with .)
2 create a custom gesture and pop to rootviewcont like before (i will publish a tutorial for this)
pbudino 3 weeks ago
Your website isn't found.
whats the url
MrCleartheset 1 month ago
@MrCleartheset it works! wwwDOTg8productionDOTcom (replace the "DOT" with the "." )
Have a nice day!
pbudino 1 month ago
@MrCleartheset it works! g8productionDOTcom (replace the "DOT" with the "." )
Have a nice day!
pbudino 1 month ago
@MrCleartheset it works! g8productionDOTcom (replace the "DOT" with the "." )
Have a nice day!
pbudino 1 month ago
Nice tutorial. Could you do one with storyboard and the PageControl swiping images? Possibly with a thumbnail view ? DOn't know how complicated it is. Doing it in html/java is pretty easy but I'd like to be able to create an objective-c gallery. Hard to find info or a tutorial on this that isn't out dated
MrCleartheset 2 months ago
@MrCleartheset Sure! But use a pagecontrol with more images it's not a good idea! However, you can use the pagecontrol and a swipe. You can start with my simple imageviewer "EASY IMAGE VIEWER WITH LEFT-RIGHT SWIPE GESTURES" (it's very simple, it's like a demo with swipe left and right), download it on g8production. com
pbudino 1 month ago