在xcode中将自定义图像添加到tabbar的背景中

时间:2012-04-06 17:55:05

标签: xcode background tabbar

我的.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设置为标签栏视图的背景。

我明显错过了什么......

0 个答案:

没有答案