3

想为我选择的选项卡设置自定义背景,到目前为止,子类化是我自定义 UITAbBar/UITabBarItem 的方式。

问题是:有谁知道(或知道我在哪里可以找到)设置背景的属性是什么?

所选选项卡周围有一个较浅的黑色/灰色圆形框。这就是我要改变的目标。

iOS 4.1 附带 Game Center,他们完全自定义了 UITabBar。我正在寻找做类似的事情。

4

1 回答 1

1

为了实现上述目标,您将需要创建一个自定义UITabBarController类。

CustomUITabBarController.h

#import <UIKit/UIKit.h>

@interface CustomUITabBarController: UITabBarController {
   IBOutlet UITabBar *tabBar1;
}

@property (nonatomic, retain) UITabBar *tabBar1;

@end

自定义UITabBarController.m

#import “CustomUITabBarController.h”

@implementation CustomUITabBarController

@synthesize tabBar1;

- (void)viewDidLoad {
   [super viewDidLoad];
   tabBar1.backgroundColor = [UIColor clearColor];
   CGRect frame = CGRectMake(0, 0, 480, 49);
   UIView *v = [[UIView alloc] initWithFrame:frame];
   UIImage *i = [UIImage imageNamed:@"customImage.png"];
   UIColor *c = [[UIColor alloc] initWithPatternImage:i];
   v.backgroundColor = c;
   [c release];
   [[self tabBar] insertSubview:v atIndex:0];
   [v release];
}

@end

然后您需要更改MainWindow.xib并选择 Tab Bar Controller。在属性检查器中,您需要将类更改为您的自定义类,然后将tabBar1插座关联到选项卡栏控制器。

于 2011-01-16T03:36:24.310 回答