4

我更新了我的 Xcode,突然所有在情节提要中连接到选择器的按钮都不再工作了。所有以编程方式编码的按钮和手势识别器都可以工作。部分原因是,他们调用了相同的 IBAction。

我做了什么...

只需在情节提要中的视图中添加一个按钮和一个标签。在 View Controller .h 中,我向 Label 添加了一个 Outlet 并声明了 IBAction。文件:

。H

#import <UIKit/UIKit.h>

@interface ViewController : UIViewController
@property (strong, nonatomic) IBOutlet UILabel *myLabel;

-(IBAction)button_pressed:(id)sender;
-(IBAction)swipe_active:(id)sender;

@end

.m

#import "ViewController.h"

@interface ViewController ()

@end

@implementation ViewController
@synthesize myLabel;

- (void)viewDidLoad
{
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.
    UISwipeGestureRecognizer *swipe_left = [[UISwipeGestureRecognizer alloc] initWithTarget:self action:@selector(swipe_active:)];
    swipe_left.direction = UISwipeGestureRecognizerDirectionLeft;
    [self.view addGestureRecognizer:swipe_left];
}

-(IBAction)button_pressed:(id)sender{
    myLabel.text=@"Button is Running";
}
-(IBAction)swipe_active:(id)sender{
    myLabel.text=@"Swipe is Running";
}

@end

而且只是按钮不起作用。

故事板:https ://i.stack.imgur.com/1hruM.png

4

2 回答 2

3

升级到 xcode 4.5 后,我遇到了同样的问题。IBActions 看起来好像它们在 IB 中设置正确,但如果您查看 .h 和 .m 文件,您会发现它们不是。如果你去你的故事板并点击你的视图控制器,在出口下查看,你会看到一个“接收到的动作”选项卡。将您的控件连接到那里的操作,它们将再次起作用。

于 2012-09-22T04:42:06.610 回答
1

对于我们的许多应用程序,我都看到了完全相同的问题。在我的所有情况下,它都是通过重新连接 Interface Builder 中的操作来修复的。

于 2012-09-28T20:43:11.667 回答