codebear22
codebear22

Reputation: 1877

IOS app UIWebView or Navigation Controller

I'm starting developing apps on iPhone, and I was wondering if you helping me with this.

Instagram App, Foursquare App both uses Navigation Buttons Bar at the bottom? Or is just a fancy navigation bar made in CSS and everything is loaded as a html in UIWebView.

Upvotes: 1

Views: 202

Answers (2)

Daniel
Daniel

Reputation: 23359

It can be as fancy as you want and doesn't mean it's not native. The out-of-the-box controls and UI we are all familiar with are not the only option, you can subclass or even create your own "tab bar" from scratch if you want to.

These apps are using native code, not HTML/CSS

Upvotes: 2

user529758
user529758

Reputation:

Grab class-dump and find it out yourself!

(...most likely, these great enterprises wouldn't hire developers who dare making a 'native' iOS app using UIWebView and HTML...)

Upvotes: 2

Related Questions