Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
5answers
176 views

Objective-C & KeyValueCoding: How to avoid an exception with valueForKeyPath:?

I've got an object of type id and would like to know if it contains a value for a given keyPath: [myObject valueForKeyPath:myKeyPath]; Now, I wrap it into a @try{ } @catch{} block to avoid ...
1
vote
1answer
57 views

KVC compliance test

Is there any tool, similar to LLVM's static analyzer, that wil test if an Objective C class is 100% KVC compliant?
0
votes
2answers
26 views

KVC Compliance - Guidelines for declaring iVars

I have seen ivars that are backing properties declared in 2 general formats (in various books, on blogs, etc...) : myProperty = _myProperty; myProperty = myProperty_; Apple docs say the former one ...
0
votes
1answer
34 views

GRMustache formatted numbers, or an HTML Template Engine with Number Formatting in iOS

I'm not sure how to best go about this. I've tried solving this my own way, but failed so far. I tried using GRMustache, only to realize that I'm trying to display floats that just look hideous in ...
0
votes
0answers
27 views

Combining KVC Collection Operators

Is it possible to combine KVC collection operators in iOS? Something like: [someManagedCollection valueForKeyPath:@"@distinctUnionOfObjects.@count.objects"]; Right now, I'm doing it like this: ...
0
votes
1answer
71 views

Distinct Object using NSPredicate

I have an NSArray of custom objects. Consider the custom object's one of the property is PageNumber. I would like filter my NSArray with a condition customObject.PageNumber is distinct. I know i can ...
0
votes
1answer
64 views

Trying to use KVC in Xcode to update a TextLabel

I've got a TextField that I'm trying to update the values as it progresses through running my code using KVC. Unfortunately I cannot seem to get anything to update past the initial value. I've used ...
0
votes
3answers
56 views

@synthesized properties and KVC

Should setter generated with @synthesize be KVC compilant or not? I found statement that getters and setters generated are KVC-compliant, shouldn't it call one of this methods? @interface testing : ...
0
votes
0answers
65 views

How to use NSTreeController with models containing different childrenKeyPath

Problem: I need to use NSTreeController with some models that have different children key paths. At first, I tried adding a children property to my models like this: @interface FirstModel : ...