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

ios - UIButton 在高亮状态下更改代码中创建的图像

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

我有两个按钮。除了其中一个图像被翻转之外,它们都具有相同的图像。如果可以以编程方式创建图像,我不想在我的应用程序包中包含多余的图像,所以我创建这样的按钮:

UIImage *forwardImage = [UIImage imageNamed:rewind_btn_img];
UIImage *rewindImage  = [UIImage imageWithCGImage:forwardImage.CGImage
                                            scale:forwardImage.scale
                                      orientation:UIImageOrientationUpMirrored];

NSArray *images = @[rewindImage, forwardImage];

for (int i = 0; i < 2; i++)
{
    UIButton *btn   = [UIButton buttonWithType:UIButtonTypeCustom];
    UIImage  *image = images[i];
    btn.frame       = CGRectMake(0.f, 0.f, image.size.width, image.size.height);
    btn.center      = CGPointMake(self.playButton.center.x + (i == 0 ? - 80.f : 80.f) * TGScaleMultiplier, self.playButton.center.y);
    btn.tag         = i + 1;
    [btn setBackgroundImage:image forState:UIControlStateNormal];
    [btn addTarget:self actionselector(rewindButtonClicked forControlEvents:UIControlEventTouchUpInside];
    [self.view addSubview:btn];
}

问题是,当我按下图像为 rewindImage 的按钮时,它会显示原始图像,并翻转到另一侧。我在这里做错了吗?有什么解决办法吗?



Best Answer-推荐答案


不确定为什么 UIImage:imageWithCGImage 是片状的,但我尝试了另一种镜像图像的方法,当应用于按钮时效果很好。所以摆脱 UIImage:imageWithCGImage 线并使用这个:

UIImage *rewindImageBase = [UIImage imageNamed:rewind_btn_img];
UIGraphicsBeginImageContext(rewindImageBase.size);
CGContextRef current_context = UIGraphicsGetCurrentContext();
CGContextTranslateCTM(current_context, rewindImageBase.size.width, 0);
CGContextScaleCTM(current_context, -1.0, 1.0);
[rewindImageBase drawInRect:CGRectMake(0, 0, rewindImageBase.size.width, rewindImageBase.size.height)];
UIImage *rewindImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();

应该可以的。

关于ios - UIButton 在高亮状态下更改代码中创建的图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24615115/

回复

使用道具 举报

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

本版积分规则

关注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