Transparent UIToolbar

前端 未结 7 1318
萌比男神i
萌比男神i 2021-02-14 19:42

I wrote the following code to make my toolbar transparent.

[mtoolbar setBackgroundColor:[UIColor clearColor]];

How do I make UIToolbar

7条回答
  •  走了就别回头了
    2021-02-14 19:58

    Check the below code

    [myToolbar setBarStyle:UIBarStyleBlack];
    [myToolbar setTranslucent:YES];
    

    Taken from

    @Brandon Bodnár has answered in the below SO post.

    Couldn't UIToolBar be transparent?

    you could also use the different approach

    Transparent UIToolBar

提交回复
热议问题