Can I set image as a title to UINavigationBar?

cocoa-touch, ios

Solution

You can use an `UIImageView` for the `UINavigationItem.titleView` property, something like:

self.navigationItem.titleView = myImageView;

Problem

Is it possible to set some image as title of Navigation bar? I think NYTimes application used a Navigation bar and title is look like image file (the reason why it's seems `UINavigationBar` is because they use right button to search).

Original source