Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
1answer
729 views

Variable Substitution with FetchRequests stored in a CoreData Model

I've always created my NSFetchRequests entirely in-code. Now I'm looking at the Xcode GUI for building a fetch request and storing it in the model. I'm following an example from the Xcode ...
4
votes
1answer
276 views

Adding Variables in xCode 4's predicate editor

I can't seem to find a way to add a fetch result with a variable in the new xCode4's editor... I've looked every where... every right click, menu item, everything... Anyone knows how to do this?
4
votes
2answers
872 views

NSPredicateEditorRowTemplate for date comparison

I'm building an NSPredicateEditor, and I want the ability to do advanced date comparison. I realize that I can build an NSPredicateEditorRowTemplate with a rightExpressionType of NSDateAttributeType, ...
3
votes
1answer
114 views

Forcing the display of a compound row with NSPredicateEditor

I'm creating an NSPredicateEditor in code and trying to achieve what I had hoped would be a fairly simple task. Basically, I would like to display a compound NSPredicateEditorRowTemplate (giving the ...
2
votes
4answers
454 views

NSPredicateEditor in Xcode 4

Bit of an issue with Xcode 4's predicate editor controls - I think I'm doing everything right, and it really seems like the IDE itself is busted. I'm having this issue in an app I'm writing, but to ...
2
votes
1answer
604 views

Automatically generated predicate row templates for to-many key?

In my Core Data managed object model, I have an entity Foo with a to-many relationship (with a to-many inverse) to entity Baz named baz. Baz has a string property named "tag". When I use ...
1
vote
1answer
352 views

Using NSPredicate to analyze strings

Howdy! This question is pretty long so be sure to have a seat first :) At one point in my code I get a string from the user, and I analyze that string. By analyzing I mean going through every ...
1
vote
1answer
64 views

NSPredicateEditorRowTemplate, specifying of Key Path with spaces?

As per a previous question, I have reluctantly given up on using IB/Xcode4 to edit an NSPredicateEditor and done it purely in code. In the GUI way of editing the fields, key paths can be specified ...
1
vote
1answer
111 views

Binding NSPredicateEditor to Shared User Defaults Controller

I have an NSPredicateEditor that is part of a preference panel for a tool that I am making. I would like to store the user's selections just as I would any other item in the NSUserDefaults object, ...
1
vote
1answer
117 views

Configuring NSPredicateEditor(RowTemplate) for Spotlight metadata queriesI'

I'm trying to configure an NSPredicateEditor (in Interface Builder) to edit the predicate for an NSMetadataQuery. As a first step, I'm trying to configure an NSPredicateEditorRowTemplate to accept key ...
1
vote
1answer
162 views

UI conventions for NSPredicateEditor

I'm aware of bare bones sample / tutorial implementations of NSPredicateEditor: http://developer.apple.com/library/mac/#samplecode/PredicateEditorSample/Introduction/Intro.html The only places I've ...
1
vote
2answers
244 views

NSPredicateEditor, ignore rows with no search terms?

I'll say right off I am an inexperienced Cocoa programmer, and I apologize if my question is answered in the docs somehow and I merely missed it, or there was something I don't understand in how the ...
1
vote
1answer
857 views

Editing an NSPredicate using NSPredicateEditor

I can create an NSPredicate easily using an NSPredicateEditor (a subclass of NSRuleEditor). What I'd like to know is this: How can I take an existing NSPredicate (one created by the editor) and ...
0
votes
1answer
30 views

Predicate editor issue

Inside my custom scroll view i have added predicate object as under. It is giving error in the methods predicateWithSubpredicates in debug stack. Here is my sample code please let me know if any error ...
0
votes
1answer
42 views

customizing the NSPredicateEditor

I want to customize the NSPredicateEditorRowTemplate, but I needn't the subtraction sign in the first RowTemplate, the second, and the third, like the Finder application.
0
votes
1answer
21 views

Clearing the data entered in the PredicatEditor

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 ...
0
votes
1answer
212 views

Distinct Row Templates for NSPredicateEditor/NSRuleEditor rows

I'm trying to figure out if it's possible to use different row templates for specific rows in an NSPredicateEditor (or, if need be, an NSRuleEditor). I've got a screenshot that I think helps me ...
0
votes
1answer
41 views

NSPredicateEditor query not working

I've got a Problem with my NSPredicateEditor. I want to use it for filtering a array of dictionarys. NSArray events = {(Stadt=>Berlin), (Stadt=>Munich), nil } The following code is working: ...
0
votes
1answer
131 views

NSPredicateEditor Just Won't Show Up

I'm having a really weird problem. I'm trying to put an NSPredicateEditor into my interface using IB, and when I build the app it just shows up as an empty gray rectangle. This is without my applying ...
0
votes
1answer
371 views

How to set NSPredicateEditor/NSRuleEditor background to alternating rows?

I've seen some apps are using alternating rows background in their predicate editors, but I can't figure out how they do it.
0
votes
2answers
348 views

NSPredicateEditorRowTemplate and CoreData

I am trying to generate predicate editor templates for my Core Data entities. In my code I have the following: NSEntityDescription *descrip = [NSEntityDescription entityForName:@"Person" ...
0
votes
2answers
315 views

Modifying NSDatePicker for automatically generated predicate row templates

How can I modify the NSDatePickerElementFlags for the NSDatePicker in row templates for NSDate properties returned by [NSPredicateRowEditorTemplate ...