- (id)initWithFrame:(CGRect)frame
{
self = [super initWithFrame:frame];
if (self) {
//如果是iOS 6
if ([[UIDevice currentDevice].systemVersion doubleValue] < 7.0) {
//用图片平铺背景色
self.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"tabbar_background"]];
}
}
return self;
}