我有两个UIActionSheets,我想我将用一个委托(实例化它们的UIViewController)来控制它们.委托将捕获一个actionSheet调用,并试图找出两个中的哪一个抛出事件.
我试图让modalView的标题区别开来,但似乎无效......
这有用吗?
如果没有,是否有其他方法来区分哪个UIActionSheet做了事件?
或者我是否需要为每个UIActionSheet创建两个不同的类,这些类将是单独的委托?
提前致谢.
我认为你需要UIActionSheet的tag属性.
就像是:
UIActionSheet *actionSheet = [[UIActionSheet alloc] initWithTitle ... ]; actionSheet.tag = 10; [actionSheet showInView:self.view];
然后在你的代表中:
- (void)actionSheet:(UIActionSheet *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex { switch (actionSheet.tag) { case 10: ... } }
tag是UIView的一个属性,可以在Interface Builder中为出现在那里的组件设置.非常方便,虽然我自己从未在这种情况下实际使用它.
Cocoa中的委托方法包括用于此目的的发送对象.将每个操作表的引用保存为控制器类中的实例变量,并且可以将其与委托方法中的actionSheet参数进行比较,以确定需要执行的操作.
使用视图的标记属性可以工作,但保留引用会更容易.如果您正在查看子视图的层次结构并且没有对所需对象的引用,则tag属性旨在帮助您查找视图.
你应该使用传递给委托方法的actionSheet指针,如Marc所说.例如:
- (void)actionSheet:(UIActionSheet *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex { if(actionSheet == myDoSomethingActionSheet) { if(buttonIndex == 0) { [self doThingA]; return; } if(buttonIndex == 1) { [self doThingB]; return; } } if(actionSheet == myOtherActionSheet) { if(buttonIndex == 3) { [self doImportantThing]; return; } } }