gpt4 book ai didi

iphone - UISegmentedControl 对 UIControlEventValueChanged 的​​操作返回什么?

转载 作者:行者123 更新时间:2023-12-03 18:51:42 26 4
gpt4 key购买 nike

所以,我有一个 UISegmentedControl:

[control addTarget:self action:@selector(myAction) forControlEvents:UIControlEventValueChanged];

只是想知道如何找出已选择的片段(以便我可以执行适当的操作)。我知道它是这样的:

@selector(myAction:) 但是发送了什么?即:当我定义我的方法时,我必须定义什么?

谢谢。

最佳答案

获取所选项目...问题的第二部分

-(IBAction) myAction:(id)sender{
NSLog(@"myAction",nil);

UISegmentedControl * control = sender;
int selectedIndex = [control selectedSegmentIndex];
}

关于iphone - UISegmentedControl 对 UIControlEventValueChanged 的​​操作返回什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3549276/

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