Answers
delegate 函数有
actionSheet
本身这个参数呀。
- (void)actionSheet:(UIActionSheet *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex;
可以用来判断是哪个
actionSheet
。
至于怎么区分,创建 actionSheet 的时候可以加 tag;其次还可以把 actionSheet 存起来,在 delegate 函数里判
if (actionSheet == self.actionSheet1)
这样。不过 actionSheet 可能会 retain delegate,保存的时候用弱引用比较好……
肉肉养的狼
answered 12 years ago