gpt4 book ai didi

objective-c - 将选择器添加到 NIB 文件中的多个分段控件

转载 作者:行者123 更新时间:2023-11-29 04:58:00 24 4
gpt4 key购买 nike

我有两个 UIbutton,我想将这两个按钮分配给 UITextView,这样当按下其中一个按钮时, TextView 内容就会从按下前一个按钮时它有什么。我想使用分段控件来做到这一点。如何在 NIB 文件中为每个分段控件分配不同的选择器?

最佳答案

如上所述,您必须使用 valueChanged: 选项将 IBAction 连接到 IB 中的 UISegmentedControl (我认为您通常为 uibuttons 设置 touchUpInside),然后尝试此

- (IBAction)changeType:(id)sender{
//segControl is an instance of UISegmentedControl
segControl = sender;
if(segControl.selectedSegmentIndex==0){
//do something
}
else if (segControl.selectedSegmentIndex==1){

}//and so on
}

希望这对您有所帮助。

关于objective-c - 将选择器添加到 NIB 文件中的多个分段控件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7586689/

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