清除PredicateEditor中输入的数据
我有一个 PredicateEditor,里面有很多行。当您在谓词行中输入任何值时,如果您想清除所有存在的数据,到底需要做什么?
我尝试仅遍历子视图并设置 null 值。它实际上从视图中清除数据,但没有从谓词中清除数据。
I have a PredicateEditor with lot of rows in it.When you enter any value in the predicate row and if you want to clear all the data that was present What exactly has to be done.?
I tried by just traversing the subViews and setting null values . it actually clears the data from the view but not from the predicate.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
NSPredicateEditor 是一个 NSRulesEditor。调用 -removeRowsAtIndexes:includeSubrows: 删除所需的规则。
NSPredicateEditor is an NSRulesEditor. Call -removeRowsAtIndexes:includeSubrows: to remove the desired rules.