インターフェイス宣言:
@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];
メニューの上部にタイトルを「スクロール」にすることはできますか? (スムーズに、音楽プレーヤーのように?
ありがとう :)