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 NavigationBar is becuase they use right button to search)
Cheers.
|
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 NavigationBar is becuase they use right button to search) Cheers. |
||||
|
|
|
You can use an ImageView for the UINavigationItem.titleView property, something like:
|
|||||||||||||||||||
|
|
I find that a transparent .png at about 35px in height has worked well.
|
|||||
|
|
I have created a custom category for UINavigationBar as follows UINavigationBar+CustomImage.h
UINavigationBar+CustomImage.m
I invoke it from my UINavigationController
|
|||
|
|
|
I modified the UINavigationBar+CustomImage.m to have the title still visible to the user. Just use insertSubview: atIndex: instead of addSubview: UINavigationBar+CustomImage.m
|
|||||
|
|
This line will work for you, I always use this
|
|||
|
|
|
I modified the code to put the image on top but its not working the barButtons are appearing on the top of the image, ie. they still appear central aligned and it looks pathetic :(
}
|
|||
|
|
|
I modified the UINavigationBar+CustomImage code to properly work without leaking memory.
|
|||
|
|
|
The following is how you would do this in (Xamarin's) MonoTouch with C#.NET Create a UIViewConvrtoller that is in a NavigationController then call this at any time:
Note: MediaProvider is just a class that fetches images. This example allows for the view to fill the full Navigation Bar , and lets the text for the items caption appear too. |
|||
|
|
|
If your buttons disappear when you navigate back and forth the navigation, this fixed it for me:
|
|||
|
|
|
Just use
where myImage is of type UIImageView and navController is of type UINavigationController |
||||
|
|
|
ios5.0 introduced a heap of features to customise the appearance of standard elements. If you didn't want to use an ImageView for the title, an alternative would be to customise the appearance of all UINavbars using a background image and a custom font/colour.
|
|||
|
|