I have the following text in my .h file:
CGRect frame = CGRectMake(0, 0, 480, 49);
UIView *v = [[UIView alloc] initWithFrame:frame];
UIImage *i = [UIImage imageNamed:@"background.png"];
UIColor *c = [[UIColor alloc] initWithPatternImage:i];
v.backgroundColor = c;
[[self tabbar] addSubview:v];
But have an error on the last line saying: "Receiver type 'viewcontroller' for instance message does not declare a method with selector 'tabbar'
I am trying to set background.png to be the background of the tabbar view.
Im clearly missing something...