• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

ios - UIButton 只能部分点击

[复制链接]
菜鸟教程小白 发表于 2022-12-12 11:56:46 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

所以,这似乎是一个奇怪的事件。我有一个带有自定义背景图像的 UIButton 和随机调用的动画(它是一个来回摇摆的浮标图像)。奇怪的是,只有按钮的底部是可点击的。我还有另一个按钮,它的设置方式相同,您可以点击图像上的任意位置。

背景图像只是一个 png(它具有透明度),但我创建的其他按钮只要在边界框内点击就可以使用。有什么想法吗?

-(void)displayPauseButton
{
    NSArray *pauseInfo = [self.sharedGameModel.theAssets objectForKey"buoy-ani"];

    //
    // add mascot button
    // aButtonArray has the info for a individual button in an array
    // the buttons are read from the array in this order
    // 0 array of images for the button animation triggered when clicked
    // 1 x position
    // 2 y position

    // this array only has the names of the image animation
    // so we init
    NSArray *pauseImages = [pauseInfo objectAtIndex:0];
    UIImage *pauseImage = [UIImage imageNamed:[pauseImages objectAtIndex:0]];
    CGFloat theX=[[pauseInfo objectAtIndex:1] floatValue];
    CGFloat theY=[[pauseInfo objectAtIndex:2] floatValue];

    // create a new mutable array to fill with the actual object
    // in the following loop
    NSMutableArray *buttonAniImages = [[NSMutableArray alloc] init];
    for (id object in pauseImages)
    {
        [buttonAniImages addObject:[UIImage imageNamedbject]];
    }

    // sets the custom image for the button
    [self.pauseButton setImage:pauseImage forState:UIControlStateNormal];

    self.pauseButton.frame = CGRectMake(theX, theY, pauseImage.size.width, pauseImage.size.height);
    self.pauseButton.imageView.animationImages = buttonAniImages;

    self.pauseButton.imageView.animationDuration=3.0;
    self.pauseButton.imageView.animationRepeatCount=1;

    [self.gameScreen addSubview:self.pauseButton];

    // add the action associated with the button
    [self.pauseButton addTarget:self actionselector(someoneHitThePauseButton forControlEvents:UIControlEventTouchUpInside];
}



Best Answer-推荐答案


埃斯克拉福德是对的。上面有东西,只是它从不明显在上面。我会补充我的经验,以防万一其他人遇到同样的问题。

在我的游戏中,有多个具有路径动画的 UIView。它们的初始帧最初设置为 0,0,然后随机调整路径起点。但是它们的初始框架覆盖了按钮的顶部。

感谢所有提供反馈的人。

关于ios - UIButton 只能部分点击,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17221268/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap