0

UIView をメイン ウィンドウに追加する必要があります。UIView は、いくつかのボタンを含むビューで構成されています。問題は、そのビュー内に配置したボタンが、その前にいくつかのビューがあるように、タッチ イベントに応答しないことです。そのビューはシングルトン クラスである必要があります。どのクラスでも touchevent に応答する必要があるからです。

UIView のコードは次のとおりです。

+ (MenuBarView *)sharedMenuBar
{
    static MenuBarView *sharedSingleton;

    @synchronized(self) {
        if (!sharedSingleton) sharedSingleton = [[MenuBarView alloc] init];

        return sharedSingleton;
    }
}

-(id)init
{
    self = [super init];
    if(self)
    {
        self.userInteractionEnabled = YES;

        backgroundBarImage = [UIImage imageNamed:@"Barra.png"];
        UIImageView * backgroundBar = [[UIImageView alloc]initWithImage:backgroundBarImage];
        backgroundBar.contentMode = UIViewContentModeCenter;
        backgroundBar.backgroundColor = [UIColor clearColor];
        [backgroundBar setFrame:CGRectMake(0, 0, backgroundBarImage.size.width, backgroundBarImage.size.height)];
        [self addSubview:backgroundBar];

        UIButton * rootBTN = [UIButton buttonWithType:UIButtonTypeRoundedRect];
        [rootBTN setFrame:CGRectMake(0, 8, 100, 40)];
        [rootBTN addTarget:self action:@selector(selectedBarButton:) forControlEvents:UIControlEventTouchUpInside];
        [self addSubview:rootBTN];

        UIImage * localizacaoIMG = [UIImage imageNamed:@"Localizador"];
        UIImageView * localizacaoView = [[UIImageView alloc]initWithImage:localizacaoIMG];
        localizacaoView.contentMode = UIViewContentModeScaleAspectFill;
        [localizacaoView setFrame:CGRectMake(backgroundBar.frame.origin.x+130, 8, localizacaoIMG.size.width, localizacaoIMG.size.height)];
        [backgroundBar addSubview:localizacaoView];

        UIButton * localizacaoBTN = [UIButton buttonWithType:UIButtonTypeCustom];
        [localizacaoBTN setFrame:CGRectMake(backgroundBar.frame.origin.x+110, 8, 60, 40)];
        localizacaoBTN.tag = 1;
        [self addSubview:localizacaoBTN];
    }
    return self;
}

//The event handling method
-(void)selectedBarButton:(UIButton *)sender
{
    NSLog(@"OK");
    [self.delegate selectedMenuBar:sender.tag];
}

AppDelegate の実装は次のとおりです。

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
    // Override point for customization after application launch.
    self.viewController = [[InitialViewController alloc] init];
    self.navController = [[EzMallNavViewController alloc]initWithRootViewController:self.viewController];
    self.window.rootViewController = self.navController;
    [self.window makeKeyAndVisible];

    if(IS_IPOD)
    {
        [[MenuBarView sharedMenuBar]setFrame:CGRectMake(0, self.window.frame.size.height-51, [MenuBarView sharedMenuBar].frame.size.width, [MenuBarView sharedMenuBar].frame.size.height)];
    }
    else
    {
        [[MenuBarView sharedMenuBar]setFrame:CGRectMake(0, self.window.frame.size.height, [MenuBarView sharedMenuBar].frame.size.width, [MenuBarView sharedMenuBar].frame.size.height)];
    }

    [MenuBarView sharedMenuBar].delegate = self;
    [self.window addSubview:[MenuBarView sharedMenuBar]];

    return YES;
}

#pragma mark MenuBarDelegateMethods
-(void)selectedMenuBar:(int) tag
{
    NSLog(@"Here");
}
4

2 に答える 2

0

ビューごとに異なる色を設定し、ビュー階層を分析してみてください。ビューを間違った順序で追加した可能性があります。

于 2013-06-03T17:54:00.607 に答える