「Now Playing」はUIBarButtonItemの1行です。「Now」が一番上、「Playing」が一番下のように、2 行に分けて配置する必要があります。次のコード行を書きました。
UIBarButtonItem *flipButton = [[UIBarButtonItem alloc]
initWithTitle:@"Now Playing"
style:UIBarButtonItemStyleBordered
target:self
action:@selector(flipView)];
self.navigationItem.rightBarButtonItem = flipButton;
だから、「Now Playing」の間に改行を入れたい。だから私を助けてください。