使用一个代理来管理两个UIActionSheets

时间:2008-11-24 08:12:45

标签: iphone cocoa-touch

我有两个UIActionSheets,我想我会用一个委托(实例化它们的UIViewController)来控制它们。代表将捕获一个actionSheet调用,并试图弄清楚这两个中的哪一个抛出事件。

我试图让modalView的标题区别开来,但似乎无效...

这应该有用吗?

如果没有,是否有其他方法可以区分哪个UIActionSheet执行了该事件?

或者我是否需要为每个UIActionSheet创建两个不同的类?

提前致谢。

3 个答案:

答案 0 :(得分:44)

我认为您需要 UIActionSheet 标记属性。

类似的东西:

UIActionSheet *actionSheet = [[UIActionSheet alloc] initWithTitle ... ];
actionSheet.tag = 10;
[actionSheet showInView:self.view];

然后在你的代表中:

- (void)actionSheet:(UIActionSheet *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex {
  switch (actionSheet.tag) {
    case 10:
      ...
  }
}

标记 UIView 的属性,可以在Interface Builder中为出现在那里的组件设置。非常方便,虽然我自己从未在这种情况下实际使用它。

答案 1 :(得分:9)

Cocoa中的委托方法包含用于此目的的发送对象。保持对每个操作表的引用作为控制器类中的实例变量,并且可以将其与委托方法中的actionSheet参数进行比较,以确定需要执行的操作。

使用视图的标记属性可以工作,但保留引用会更容易。如果您正在查看子视图的层次结构并且没有对所需对象的引用,则tag属性旨在帮助您查找视图。

答案 2 :(得分:6)

你应该使用传递给委托方法的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;
        }
    }
}