我有一个programaticaly创建的工具栏,有3个按钮(这里只显示1个)。经过大量的谷歌搜索,我能够设置一个漂亮的背景图像,但现在我不知道在哪里放
action: target:self action:@selector(pressButton3:)
方法的代码。所以我有一个带有漂亮彩色图像的非工作按钮。我已经尝试了很多例子,如果按钮工作,图像不起作用,反之亦然。请帮忙。
//Add buttons
UIImage *buttonImage = [UIImage imageNamed:@"mapp.png"];
UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];
[button setImage:buttonImage forState:UIControlStateNormal];
button.frame = CGRectMake(0, 0, buttonImage.size.width, buttonImage.size.height);
UIBarButtonItem *systemItem1 = [[UIBarButtonItem alloc] initWithCustomView:button];
[systemItem1 initWithBarButtonSystemItem:UIBarButtonItemStylePlain target:self action:@selector(pressButton1:)];
//add to array
NSArray *items = [NSArray arrayWithObjects: systemItem1, nil];
答案 0 :(得分:1)
如果您添加以下内容,我认为您的按钮应该可以正常工作:
[button addTarget:self action:@selector(pressButton1:) forControlEvents:UIControlEventTouchUpInside];
删除该行:
[systemItem1 initWithBarButtonSystemItem:UIBarButtonItemStylePlain target:self action:@selector(pressButton1:)];