我的.h文件中有以下文字:
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];
但是在最后一行上有一个错误:“接收器类型'viewcontroller'例如消息没有声明带有选择器'tabbar'的方法
我正在尝试将background.png设置为标签栏视图的背景。
我明显错过了什么......