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.
|
6
|
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 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
|
||
|
|
|
|
I find that a transparent .png at about 35px in height has worked well.
|
||
|
|
|
|
Thanks very much! One question: You declared - (void) removeIfImage:(id)sender; but didn't tell us how it is implemented. What's the implementation of this? |
||
|
|
|
Excellent, thank you. If you simply create a view and set titleView the autoresizing can bite you; this solution avoids that problem. |
||
|