gpt4 book ai didi

ios - 当按下另一个 UI 按钮时隐藏一个 UI 按钮

转载 作者:行者123 更新时间:2023-11-28 22:14:05 26 4
gpt4 key购买 nike

我有一个录制按钮,按下该按钮后,我想隐藏说明按钮。

这是录制按钮的代码:

// Create custom overlay
// Create instruction/record button
// Add instruction/record button to custom overlay
[_videoRecordBtn addTarget:self action:@selector(startVideoRecord:) forControlEvents:UIControlEventTouchUpInside];

所以在 startVideoRecord 中我应该有类似的东西:

-(IBAction)startVideoRecord:(id)sender{
[_instru setHidden:YES];
// start recording...
}

但我不知道如何将 _instru 按钮传递给 startVideoRecord

最佳答案

向您的 ViewController 添加一个属性以保留对您的 instructionsButton 的引用:

@property (nonatomic, strong) UIButton *instructionsButton;

当您创建 instructionsButton 时,将其分配给此属性。

然后您可以使用 self 在您的 ViewController 中的任何位置通过此属性访问按钮。说明按钮

因此,您的操作方法如下:

-(IBAction)startVideoRecord:(id)sender{
self.instructionsButton.hidden = YES;
// start recording...
}

关于ios - 当按下另一个 UI 按钮时隐藏一个 UI 按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22193556/

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