0

我正在使用 ZBar SDK 在 iPhone 上读取二维码,但是我在该视图中添加了一个按钮。但是按钮不起作用!即使我点击按钮,它也不会转到该按钮的操作方法。问题究竟出在哪里?在此先感谢您的帮助。

-(UIView *)setSettingsButton
{

    UIView *view=[[UIView alloc] initWithFrame:CGRectMake(0, 0, 320, 480)];
    [view setBackgroundColor:[UIColor clearColor]];
    UIToolbar *myToolBar = [[UIToolbar alloc] init];

    UIBarButtonItem *button=[[UIBarButtonItem alloc] initWithTitle:@"Settings" style:UIBarButtonItemStyleBordered target:self action:@selector(settingsAction)];

    [myToolBar setItems:[NSArray arrayWithObjects:button,nil]];    

    settingsLabel = [[UILabel alloc] initWithFrame:CGRectMake(20, 37, 281, 77)];
    [settingsLabel setFont:[UIFont fontWithName:@"Arial-BoldMT" size:16]];
    [settingsLabel setTextAlignment:UITextAlignmentCenter];
    [settingsLabel setBackgroundColor:[UIColor clearColor]];
    [settingsLabel setTextColor:[UIColor blueColor]];
    [settingsLabel setNumberOfLines:1];
    [settingsLabel setText:@"For settings scan admin QR"];
    [view addSubview:settingsLabel];

    settingsLabel.hidden = YES;

    [myToolBar setBarStyle:UIBarStyleDefault];
    CGRect toolBarFrame;
    toolBarFrame = CGRectMake(0, 436, 320, 44);
    [myToolBar setFrame:toolBarFrame];
    [view addSubview:myToolBar];
    return  view;
}
-(void)settingsAction
{

    settingsLabel.hidden = NO;

}
4

2 回答 2

0

我曾经遇到过同样的问题。那是因为我的视野太大了。尝试改变视图的大小UIView *view=[[UIView alloc] initWithFrame:CGRectMake(0, 0, 320, 380)];,你会看到它是否有效。

于 2013-06-12T07:44:09.890 回答
0

我看不出问题出在哪里,但如果有帮助,我已经自定义了 zBar 相机视图,没有任何问题。

最有可能的答案是清晰的视图遮蔽了工具栏视图。这是一个用于调试 UIViews 的库:https ://github.com/domesticcatsoftware/DCIntrospect

于 2013-06-12T05:55:14.340 回答