How can we put two line in UIBarButtonItem in Navigation Bar

前端 未结 4 1918
佛祖请我去吃肉
佛祖请我去吃肉 2020-12-16 21:19

\"Now Playing\" is in One line in UIBarButtonItem. I have to put it in two lines, like \"Now\" is ay top and \"Playing\" is at bottom.I have written the following line of co

4条回答
  •  甜味超标
    2020-12-16 21:44

    enter image description here enter image description here

    I create 2 PNG images by myself, and it looks good.

    UIImage *img = [UIImage imageNamed:@"nowplaying.png"];
    UIBarButtonItem *nowPlayingButtonItem = [[[UIBarButtonItem alloc] initWithImage:img style:UIBarButtonItemStyleBordered target:delegate action:@selector(presentNowPlayingMovie)] autorelease];
    

提交回复
热议问题