我创建了UIActionSheet
UIActionSheet * action = [[UIActionSheet alloc]initWithTitle:@""
delegate:self
cancelButtonTitle: @"cancel"
destructiveButtonTitle: @"OK"
otherButtonTitles: nil];
[action showInView:self.view];
[action release];
如果UIActionSheet
中的取消按钮发生了,我想触发UIBarButtonItem
的事件,这在我看来。
我的问题是如何在UIActionSheet
委托方法
答案 0 :(得分:26)
另一种方法是避免警告如下:
[[UIApplication sharedApplication] sendAction:barButtonItem.action
to:barButtonItem.target
from:nil
forEvent:nil];
答案 1 :(得分:17)
不知道当前的条形按钮项目操作,您可以这样调用它:
[barButtonItem.target performSelector:barButtonItem.action]
但是这会带来“未知选择器”编译器警告,但这可能是worked around。
答案 2 :(得分:12)
@ ton1n8o的解决方案对我有用。这是swift中的实现:
UIApplication.sharedApplication().sendAction(barButtonItem.action, to: barButtonItem.target, from: nil, forEvent: nil)
答案 3 :(得分:2)
我已经阅读了接受的答案,这是非常危险的。你永远不应该压制这样的警告,以便快速通路到你想要的结果!
最安全的方法:
SEL selector=barButton.action;
id target=barButton.target;
if(selector && target){
IMP imp = [target methodForSelector:selector];
void (*func)(id, SEL) = (void *)imp;
func(target, selector);
}
请在此处阅读原始帖子:performSelector may cause a leak because its selector is unknown
答案 4 :(得分:1)
您可以使用此方法以编程方式触发特定按钮的点击事件:
[self performSelector:@selector(buttonClicked:) withObject:self.myButton afterDelay:0.0];
答案 5 :(得分:1)
对于与 RxCocoa 有关的情况,我需要为执行动作提供nil - object
,否则会因EXC_BAD_ACCESS
而崩溃:
let button = sut.navigationItem.leftBarButtonItem!
_ = button.target?.perform(button.action, with: nil)
答案 6 :(得分:0)
这就是我使用actionSheet的方式..
actionSheet = [[UIActionSheet alloc] initWithTitle:nil
delegate:nil
cancelButtonTitle:nil
destructiveButtonTitle:nil
otherButtonTitles:nil];
[actionSheet setActionSheetStyle:UIActionSheetStyleBlackTranslucent];
CGRect pickerFrame = CGRectMake(0, 40, 0, 0);
UIPickerView *pickerView = [[UIPickerView alloc] initWithFrame:pickerFrame];
pickerView.showsSelectionIndicator = YES;
pickerView.dataSource = self;
pickerView.delegate = self;
[actionSheet addSubview:pickerView];
[pickerView release];
UISegmentedControl *closeButton = [[UISegmentedControl alloc] initWithItems:[NSArray arrayWithObject:@"Done"]];
closeButton.momentary = YES;
closeButton.frame = CGRectMake(260, 7.0f, 50.0f, 30.0f);
closeButton.segmentedControlStyle = UISegmentedControlStyleBar;
closeButton.tintColor = [UIColor blackColor];
[closeButton addTarget:self action:@selector(dismissActionSheet) forControlEvents:UIControlEventValueChanged];
[actionSheet addSubview:closeButton];
[closeButton release];
[actionSheet showInView:[[UIApplication sharedApplication] keyWindow]];
[actionSheet setBounds:CGRectMake(0, 0, 320, 485)];
完成此操作后,只需在.m中定义一个选择器,如..
-(void)dismissActionSheet{
[actionSheet dismissWithClickedButtonIndex:0 animated:YES];
}
所以在解雇行动表内你可以重新写下栏内按钮项目中发生的事情...希望这会有所帮助。
答案 7 :(得分:0)
实施委托方法
- (void)actionSheet:(UIActionSheet *)actionSheet didDismissWithButtonIndex:(NSInteger)buttonIndex
OR
- (void)actionSheet:(UIActionSheet *)actionSheet willDismissWithButtonIndex:(NSInteger)buttonIndex
{
if(buttonIndex == actionSheet.destructiveButtonIndex)
{
}
else if(buttonIndex == (actionSheet.cancelButtonIndex))
{
// Call your event here
// Fire the event of UIBarButtonItem.
}
}
actionSheet:didDismissWithButtonIndex:
从屏幕上取消操作表后发送给代理人。
- (void)actionSheet:(UIActionSheet *)actionSheet didDismissWithButtonIndex:(NSInteger)buttonIndex Parameters
actionSheet被解雇的操作表。 buttonIndex索引 单击的按钮。按钮索引从0开始。如果是这样 是取消按钮索引,操作表正在取消。如果是-1,那么 取消按钮索引未设置。
<强>讨论:强> 在动画结束并隐藏视图后调用此方法。
actionSheet:willDismissWithButtonIndex:
在解除操作表之前发送给代理人。
- (void)actionSheet:(UIActionSheet *)actionSheet willDismissWithButtonIndex:(NSInteger)buttonIndex Parameters
actionSheet即将被解雇的行动表。 buttonIndex单击的按钮的索引。如果这是 取消按钮索引,操作表正在取消。如果为-1,则取消 按钮索引未设置。
讨论此方法在调用之前调用 动画开始,视图被隐藏。