滚动UIViewController标题

时间:2012-05-13 01:28:26

标签: ios scroll titlebar audio-player

接口声明:

@interface MusicPlayerViewController : UIViewController

我目前正在设置这样的标题:

NSString* Title = [[[SongList objectAtIndex:currentIndex] childNamed:@"title"] value];
    Title = [Title stringByAppendingString:@" / "];
    Title = [Title stringByAppendingString:[[[SongList objectAtIndex:currentIndex] childNamed:@"artist"] value]];
    [self setTitle:Title];

是否可以在菜单顶部标题为“滚动”? (顺便说一句,就像在音乐播放器中那样?

谢谢:)

1 个答案:

答案 0 :(得分:1)

我认为这样做你需要创建自己的UILabel子类,然后将其设置为标题的customView。或者,如果您仍希望能够正常设置标题,则为UINavigationBar本身的子类。