Tell me more ×
User Experience Stack Exchange is a question and answer site for user experience researchers and experts. It's 100% free, no registration required.

In iPhone UI development, we have this design pattern of putting the current location in the UINavigationBar. When you first open the app, it will generally show the company logo. As you navigate, the logo is replaced with the page title. This Yelp app is an example of using this UINavigationBar.

yelp iphone app

For my particular app, I don't have multiple levels of navigation. It's just a list of videos. When you click a video it opens a full screen movie player. For my simple app, do I need a title bar showing my company logo? In the web world, it's nice to always have your logo at the top to help the user know what site he/she is on. Does this apply to the mobile app world?

share|improve this question

4 Answers

up vote 2 down vote accepted

Short answer, Yes its great to have a logo in your app.

Since much of app development is done using the native UI everything can start to blur together in a users mind. If you want your app to get the "credit" of the good use and experience the users gets for it than you should keep your logo up top.

Otherwise, you can think of adding functionality to that space to help the user sort through the grid of videos. But I don't know what the requirements of your app are.

share|improve this answer
My app does use the generic templates provided by Apple because it's just a quick version 1. So as you said, the title bar will help orient the user since my app doesn't look special. But I saw some 1st party 1-page apps, such as Compass, not have a title bar. Compass is very uniquely designed though, so it might not necessitate a title bar. Is this the right thought? – JoJo May 2 '11 at 18:37
Exactly @jojo if your product is not unique or the thought of whose app is giving the user its function and experience than then a logo works very well for ingraining that into their memory as they use your app. Later, if it is ingrained enough they will remember and recommend it. – jonshariat May 2 '11 at 18:52

Have a look at the AppStore app. Maybe you find some features there. I could imagine:

  • Search field
  • Refresh (Load new from web)
  • A tab navigation (which you don't need)
  • Just a headline

Coming back to your question. It's always nice to provide a headline. About the logo: will it look nice up there? Make a little layout and see for yourself. In terms of usability I don't think that a logo will give it additional value. The user's focus might be on the content not on the branding.

share|improve this answer
I agree. Depending on what it looks like I wouldn't display the logo just for the sake of displaying the logo. With mobile apps, you are already working with very limited real estate. However, if you can add some basic functionality within the same line (like quick-search or a refresh, as you mention) then it's probably worth it. – Baa May 2 '11 at 20:11
Maybe there's other places within the app to brand. E.g. a high sized logo would not fit in properly in the header part. This could look ugly and is not readable. – erikrojo May 3 '11 at 11:59

another point: if the user has lots of apps on his/her phone, simply using the nav bar to show a title can give the user a quick, visual reminder of which app they're using at a glance.

share|improve this answer

Yes. Otherwise users don't know where (which app) they are. This is even more important on mobile devices, since users are often on the move and non-continuous in their use of apps. Please let them know where they are at all times.

Good luck with your app!

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.