gpt4 book ai didi

ios - 翻转图像以供按钮使用

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:02:35 24 4
gpt4 key购买 nike

我的应用程序中有一些按钮是这样声明的:

let infoButton = UIButton(type: UIButtonType.InfoLight) as UIButton
infoButton.addTarget(self, action: "toggleInfo", forControlEvents: UIControlEvents.TouchUpInside)
self.navigationItem.rightBarButtonItem = UIBarButtonItem(customView: infoButton)

在将图像分配给我的 NavigationBar 之前,有没有办法从系统定义的按钮本身(例如垂直方向)镜像图像?

最佳答案

你可以试试这个:

    CGAffineTransform transform = CGAffineTransformMakeRotation(M_PI * 0.05);
UIView *view = [buttonItem valueForKey:@"view"];
view.transform = transform;

在这里查看他们如何制作动画:https://gist.github.com/bergholdt/0db2d2264e29e3646e9c

关于ios - 翻转图像以供按钮使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35605369/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com