按下后隐藏 UI 按钮

发布于 2024-11-10 04:25:23 字数 635 浏览 1 评论 0原文

嘿! 我试图在按下 UIButton 后隐藏它

这是我的 .h 代码:

    #import <UIKit/UIKit.h>

    @interface TemplateTestViewController : UIViewController {   }

    - (IBAction)ButtonPressed;

    IBOutlet UIButton *sample; @property (nonatomic, retain) IBOutlet UIButton
    *sample;



    @end

这是我的 .m 代码:

#import "TemplateTestViewController.h"
#import "Page.h"

@implementation TemplateTestViewController
@synthesize sample;


-(IBAction) ButtonPressed{

    if ( ([sample.selected=YES]))

{   

    sample.hidden = YES;
}

​​ 我收到四个错误,并且代码不起作用。我做错了什么?我是新来的,所以一些示例代码将不胜感激!

Hey!
I am trying to hide a UIButton after it is pressed

This is my .h code:

    #import <UIKit/UIKit.h>

    @interface TemplateTestViewController : UIViewController {   }

    - (IBAction)ButtonPressed;

    IBOutlet UIButton *sample; @property (nonatomic, retain) IBOutlet UIButton
    *sample;



    @end

This is my .m code:

#import "TemplateTestViewController.h"
#import "Page.h"

@implementation TemplateTestViewController
@synthesize sample;


-(IBAction) ButtonPressed{

    if ( ([sample.selected=YES]))

{   

    sample.hidden = YES;
}

I get four errors and the code does not work. What am I doing wrong? I am new so some sample code would be much appreciated!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

猛虎独行 2024-11-17 04:25:23

您的 .h 文件中存在带有 @interface 声明的问题。在下面使用

#import <UIKit/UIKit.h>

    @interface TemplateTestViewController : UIViewController {
       IBOutlet UIButton *sample;
    }
    @property (nonatomic, retain) IBOutlet UIButton *sample;
    - (IBAction)ButtonPressed;
    @end

并在您的 .m 类中

-(IBAction) ButtonPressed {

    if(sample.selected == YES)
    {   
       sample.hidden = YES;
    }
}

you have issue in the your .h file with @interface declaration. use below

#import <UIKit/UIKit.h>

    @interface TemplateTestViewController : UIViewController {
       IBOutlet UIButton *sample;
    }
    @property (nonatomic, retain) IBOutlet UIButton *sample;
    - (IBAction)ButtonPressed;
    @end

And in your .m class

-(IBAction) ButtonPressed {

    if(sample.selected == YES)
    {   
       sample.hidden = YES;
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文