我有一个视图,上面有三个按钮。
当其中任何一个被按下时,它会调用一个带有另一个按钮的自定义 UIView。
我想做的是将自定义视图按钮更改为不同的操作,具体取决于称为新视图的按钮。
希望这是有道理的。
谢谢
我建议您为自定义视图动态创建按钮:
CGRect buttonFrame = CGRectMake( 10, 280, 100, 30 );
UIButton *button = [[UIButton alloc] initWithFrame: buttonFrame];
[button setTitle: @"My Button" forState: UIControlStateNormal];
[self.view addSubview: button];
if(//clicked button 1)
{
[button addTarget: self
action: @selector(action1:)
forControlEvents: UIControlEventTouchDown];
}
else if(//clicked button 2)
{
[button addTarget: self
action: @selector(action2:)
forControlEvents: UIControlEventTouchDown];
}
else
{
[button addTarget: self
action: @selector(action3:)
forControlEvents: UIControlEventTouchDown];
}
我相信你可以做这样的事情来动态地向按钮添加动作:
UIButton *button = [UIButton alloc] init]
[button addTarget:self action: @selector(pressButton:) forControlEvents:UIControlEventTouchUpInside];
希望有帮助!