gpt4 book ai didi

iphone - UISegment 控件背景图片用户更改

转载 作者:行者123 更新时间:2023-11-29 13:36:22 25 4
gpt4 key购买 nike

我希望我的应用程序有一个设置,当用户按下 UISegmented 控件中的一个片段时可以更改图像,但是,我只知道在导航栏中显示它。我将如何以有特定 View 的设置方式实现它,当用户按下一个片段然后按下完成时,它将恢复到具有该背景图像的新 View 。

最佳答案

试试这行代码。

 NSArray *ary=[sgmntControl subviews];
NSInteger intCount=0;
for (id seg in ary)
for (id imageview in [seg subviews])
if ([imageview isKindOfClass:[UIImageView class]])
{
if(intCount==1)
{
[imageview setimage:[UIImage imagenamed:@""];

}
else
{
[imageview setimage:[UIImage imagenamed:@""];

}


}

关于iphone - UISegment 控件背景图片用户更改,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10476394/

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