Can I give a UIToolBar a custom background in my iPhone app?

后端 未结 10 981
误落风尘
误落风尘 2020-12-02 09:00

Is it possible to give a UIToolBar a custom background from an image rather than the usual tinted blue/black fade out?

I\'ve tried giving the view a background and s

10条回答
  •  情歌与酒
    2020-12-02 09:43

    Answering my own question here!!! Overriding the drawRect function and creating an implementation of the UIToolbar does the trick :)

        @implementation UIToolbar (CustomImage)
    - (void)drawRect:(CGRect)rect {
        UIImage *image = [UIImage imageNamed: @"nm010400.png"];
        [image drawInRect:CGRectMake(0, 0, self.frame.size.width, self.frame.size.height)];
    }
    @end
    

提交回复
热议问题