我的 .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 设置为标签栏视图的背景。
我显然错过了一些东西......