繁体   English   中英

永久物镜视窗c

[英]Permanet view on window objective c

我需要在主窗口中添加一个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");
}

您的菜单视图似乎具有零尺寸的边框,因此未检测到触摸。 由于菜单视图未设置为将图形裁剪到其边界,因此按钮出现在屏幕上。

尝试为不同的视图设置不同的颜色并分析视图层次结构,可能是您以错误的顺序添加了视图。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM