objC 中是否有用于显示/隐藏方法的 if 语句?

发布于 2024-11-06 00:38:19 字数 663 浏览 3 评论 0原文

我在不同的选项卡中使用相同的 uiviewcontroller 实例。 viewcontroller中有一个uitableview。 在firstviewController实例中,我不想编辑uitableview。 在第二个中,我使用表格视图的编辑模式。 这就是为什么我想显示或隐藏这个方法:

- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath {

是否可以做出这样的 if 语句:

#if (editingOK)
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath {
....some codes
}
#endif

编辑 OK 是一个 BOOL 属性。

如果你问我为什么想要它,因为如果用户在单元格上滑动,它会显示“删除”按钮。 我只是想要它,如果我的编辑OK=YES。

i use same uiviewcontroller's instance in different tabs.
there is a uitableview in viewcontroller.
in firstviewController instance, i dont wanna edit the uitableview.
in the second one i use edit mode for tableview.
thats why i want to show or hide this method:

- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath {

is it possible to make an if statement like this:

#if (editingOK)
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath {
....some codes
}
#endif

editing OK is a BOOL property.

if you ask why i want it, because if the user swipes on the cell, it display Delete button.
i just want it if my editingOK=YES.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

素年丶 2024-11-13 00:38:19

#if/#endif 语法用于条件编译:它允许您根据构建配置在编译时修改程序。阅读“C 预处理器”以了解更多信息。

正如您所说,如果您使用相同的对象实例作为不同 UITableView 的委托,则必须有某种方法来确定您正在处理哪个表。

您需要做的是实现一个附加方法:

- (UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath

当用户滑动单元格时调用该方法,您可以决定是否应显示删除按钮,然后返回适当的 UITableViewCellEditingStyle 常量。

The #if/#endif syntax is used for conditional compilation: it lets you modify your program at compile time based on build configuration. Read about the "C preprocessor" to learn more.

If you are, as you say, using the same object instance as the delegate of different UITableViews, you must have some way to determine which table you are dealing with.

What you need to do is implement an additional method:

- (UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath

That method is called when the user swipes the cell, and you can decide if a delete button should appear or not, then return the appropriate UITableViewCellEditingStyle constant.

街角卖回忆 2024-11-13 00:38:19

可编辑性不是通过调用UITableViewController的setEditing方法来控制的吗?因此,您可以根据是否要启用编辑来设置它,而无需#ifdef 丑陋。

Isn't editability controlled by calling the setEditing method of the UITableViewController? So you could set that depending on whether or not you want to enable editing, w/o this #ifdef ugliness.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文