objC 中是否有用于显示/隐藏方法的 if 语句?
我在不同的选项卡中使用相同的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
#if/#endif
语法用于条件编译:它允许您根据构建配置在编译时修改程序。阅读“C 预处理器”以了解更多信息。正如您所说,如果您使用相同的对象实例作为不同 UITableView 的委托,则必须有某种方法来确定您正在处理哪个表。
您需要做的是实现一个附加方法:
当用户滑动单元格时调用该方法,您可以决定是否应显示删除按钮,然后返回适当的 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:
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.可编辑性不是通过调用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.