视图控制器内的 UIButton 不响应任何操作

Posted

技术标签:

【中文标题】视图控制器内的 UIButton 不响应任何操作【英文标题】:UIButton inside view controller not responding to any action 【发布时间】:2014-10-22 15:05:24 【问题描述】:

我正在创建一个带有按钮和选择器视图的视图控制器,如下所示,问题是按钮不响应任何操作,即 dismissButtonPushed 未调用

    UIViewController* x=[[UIViewController alloc]init];
    UIButton* btn=[[UIButton alloc]init];
    btn.frame = CGRectMake(50,80,250,50);
    [btn setTintColor:[UIColor blueColor]];
    [btn addTarget:self action:@selector(dismissButtonPushed:) forControlEvents:UIControlEventTouchUpInside];
    [btn setEnabled:true];
    [btn setTitle:@"Dismiss" forState:UIControlStateNormal];
    [x.view setBounds:CGRectMake(0,-250, 350,350)];
    [x.view addSubview:btn];
    [x.view addSubview:self.productfamilyPikerview];
    x.modalPresentationStyle=UIModalPresentationOverCurrentContext;
    [self.searchButton setHidden:true];
    [self presentViewController:x animated:YES completion:nil];

这里还有dismissButtonPushed 方法:

-(void)dismissButtonPushed:(id)sender


【问题讨论】:

按钮是否响应您的触摸?你用透明的东西盖住了吗? 【参考方案1】:

改变这一行

[btn addTarget:x action:@selector(dismissButtonPushed:) forControlEvents:UIControlEventTouchUpInside];

[btn addTarget:self action:@selector(dismissButtonPushed:) forControlEvents:UIControlEventTouchUpInside];

希望对你有帮助!

【讨论】:

如果有帮助,请将其标记为接受的答案,以供将来搜索相同内容的用户使用。谢谢。 如果这是(唯一的)问题,那么 OP 将会崩溃。 OP 代表什么? 原始海报(提出问题的用户,性别中立)。 netforbeginners.about.com/od/internetlanguage/f/What-Is-OP.htm

以上是关于视图控制器内的 UIButton 不响应任何操作的主要内容,如果未能解决你的问题,请参考以下文章

使用swift在scrollview内的stackview中更改uibutton中的标题

UIButton 没有响应

UIView 内的 UIButton 目标操作

如何在 UITableView 内的 UIButton 点击​​上传递一个 int 值

添加到视图的子视图的 UIButton 不会响应

UITableViewCell 内的 UIButton 没有收到点击?