Does anyone know a good tutorial for Tab bars? [closed] - iphone

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
Does anyone know a good tutorial for Tab bars?
My app is currently a "view-based" app. I need a tutorial on how to make it so that my main nib loads the view from other nibs, and when I click different tabs, it loads other nibs.
Thanks

The iPhone Developers' Cookbook by Erica Sadun has a good recipe for tabbars on page 126, including customising the bar from a list of controllers.

Have you looked around this site?
http://www.cocoadevcentral.com/

TheElements sample code in the Apple SDK -- lots of links on StackOverflow and elsewhere for combining with navigation controllers (always add nav controllers to the tab bar, not vice versa!)

Related

Where can I find well coded projects written in swift? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I know the basics about swift.
Now I think it's much faster to learn from well written and structured example projects instead of small Tutorials.
My Topics:
- Navigation Controller (Storyboard)
- Network communication with JSON data
- Login/Signup mechanism
I want to build an app with a login/signup mechanism followed by a navigation controller based menu. Therefore I am looking for a professional example project.
Do you know well written open source projects (perhaps github?!) to learn how to structure my code?
How could I implement the Login/Signup screens before the navigation controller? Or should I embed them into the navigation controller?
Looking forward to your answers!
Jan
Even if this question is a bit opinion-based, I would recommend you to check the tutorials from Ray Wenderlich. There are many free tutorials and even eBooks to read with all the source-code.
For your two topics there are for example the following tutorials:
Navigation Controllers in Swift
Working with JSON

Creating Custom UIController for iOS step by step tutorial [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I have found so many custom cocoa controls in various sites, specially in http://www.cocoacontrols.com/, that is really helpful. Anyone can use those. But I want to know that is there any step by step tutorial to make my own Custom UI Controller ? Can you post some reference?
Have a look here... nice tutorial for creating custom control
http://www.thinkandbuild.it/how-to-build-a-custom-control-in-ios/?goback=%2Egmp_121874%2Egde_121874_member_214742305
Custom UITableView
Custom UIView
Custom UIScrollView
Custom UIImageView
Custom UITextView using UILabel
check this, it will explain from basic.
http://www.raywenderlich.com/1797/how-to-create-a-simple-iphone-app-tutorial-part-1

iOS Navigation Breadcrumb Trail [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
Basically, I have a client that wants a breadcrumb trail implemented in the navigation bar. I realize Apple doesn't recommend this behavior, but the app I'm building is for internal use only and won't be submitted to the App Store.
I need something along the lines of what AirVideo uses in their iPad App. Are there any navigation controllers that provide this functionality or any other code available?
I have done similar, but unfortunately I cannot share any code, as it is bound by NDA. But I can guide you for an easy solution.
Use UIWebView for breadcrumb.
Use CSS to show your items (like http://www.jankoatwarpspeed.com/examples/breadcrumb/#) which are enumerated from UIViewController stack
Give links, custom schema linkes, like (controller://1, controller://2 etc)
handle UIWebView requests, and use popToViewController of UINavigationController to change to selected controller
that's it
hope this helps
I think you'd have to create your own custom View Controller that holds a reference to the other views, and draws the buttons how you want.

A good tutorial/sample code for editable table cells? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
Apple used to have EditableDetailView as sample code to learn how to do editable cells within UITableView. But this sample is no longer available on the developer site.
Are there any other sample code that's recommended to learn how to do this? I'm looking to have a cell that's editable so it looks similar to the contacts app's detail view.
I had a quick look, and it looks like both CoreDataBooks and SimpleUndo show off some table editing functionality. I can't find anything like EditableDetailView, however. Not sure why they took it down!

Are there any good UIScrollView Tutorials on the net? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
Any good links are highly appreciated! This goes to community wiki.
Some good samples with the basic functionalities covered
very simple uiscrollview demo
Scrolling
UiScrollViewTutorial
implementing tap to zoom in uiscrollview on an iphone
multiple virtual pages in uiscrollview
Not to mention:
stackoverflow UIScrollView
Here's a new one:
http://www.raywenderlich.com/10518/how-to-use-uiscrollview-to-scroll-and-zoom-content#more-10518
My article on two advanced UIScrollView techniques (+ sample code): github.com/andreyvit/ScrollingMadness/:
Emulating Photo Library-style paging+zooming+scrolling.
Programmatically zooming UIScrollView.
It's my blog but it may be useful for the beginners Tutorial for creating UIScrollview Programmatically
I found this tutorial perfect for my situation. I didn't need any zooming effect. I want a large content holding subviews.
uiscrollview-examples