How can I create a horizontal gradient background for my iOS nav bar?

前端 未结 4 572
难免孤独
难免孤独 2021-01-31 10:44

I know how to set a navigation bar background color (with barTintColor), but now I am working on an iOS app that calls for a horizontal gradient (not the typical vertical gradie

4条回答
  •  轮回少年
    2021-01-31 11:23

    You can use that :

    [[UINavigationBar appearance] setBackgroundImage:[UIImage imageNamed:@"gardientImage"] forBarMetrics:UIBarMetricsDefault];
    

    for ios 7 navigation bar height is 64px

提交回复
热议问题