-1

我正在尝试设置一个标签以在我的 iOS 应用程序中启用多个操作表,但我应该在哪里声明它以及如何声明?

[actionSheet setTag:kActionSheet1];

这在我输入的 .m 中,但需要声明

4

1 回答 1

0
UIActionSheet *asheet = [[UIActionSheet alloc] init];
[asheet setTag:11];
[asheet showInView:self.view]; 

这里有一些教程。

iOS 快速提示:创建动态操作表

UIActionSheet 和 UIActionSheetDelegate

于 2013-07-02T14:18:32.677 回答