Can I center a UIToolbar item?

后端 未结 4 1290
遥遥无期
遥遥无期 2021-02-13 21:57

I am putting a label on a UIToolbar (per this tip: Adding a UILabel to a UIToolbar).

But the toolbar has a button on the left side, and so flexible spaces throw the labe

4条回答
  •  暗喜
    暗喜 (楼主)
    2021-02-13 22:35

    Yes we can center a toolbar item just put two flexible space in the toolbar like :

    UIBarButtonItem *flexibaleSpaceBarButton = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFlexibleSpace target:nil action:nil];
    
    toolbar.items = [NSArray arrayWithObjects:loginButton,flexibaleSpaceBarButton,toolBarLabel,flexibaleSpaceBarButton, nil];
    

提交回复
热议问题