Key-value Observing or KVO is a technology for observing changes in object properties.
0
votes
0answers
14 views
KVOs (key value observers) stop working after using PayPal or ZooZ
Libraries like PayPal and ZooZ take control of the iOS window to paint a set of screens and provide a workflow for the user to provide payment information.
Now for such libraries, the generic warning ...
1
vote
2answers
45 views
Key-value observation: Can I observe for changes on ALL properties?
Whenever a property on my object is changed or updated I want to change a variable (nonce variable). This nonce is time-based. So everytime a property is updated this nonce gets updated to the current ...
2
votes
1answer
45 views
Is it safe to observe a keyPath when an object along the path may change?
Is it safe to implement KVO as such:
[self addObserver:self
forKeyPath:@"restaurant.oldestOrder.patron.frustrationLevel"
options:0 context:nil];
…when you know that oldestOrder ...
0
votes
1answer
30 views
How does BreezeJS track property changes
I am curious about how BreezeJS is able to determine which properties of an entity have changed and still support IE8?
I am in the need of similar functionality for a library I am building. ...
0
votes
1answer
38 views
can not receive notification of change, key value observing, KVO model-IOS
Im registering an observer for on of my class named myClassA ( subclass of uiview ) from one of my class named UIScrollView(Sample)( a category for uiscroll view )
@implementation UIScrollView ...
0
votes
1answer
40 views
Loading of different views in a single custom view based on buttons in those Custom views
In my project I have only one window, in that window I have only one Custom view, nothing other than that. In that custom view I am loading one Default view, and in that default view I have one Button ...
0
votes
2answers
24 views
Observing changes to database value via KVO
I'm building a messaging application. I update the badge count in the database via a sqlite trigger whenever any operation like insert/delete/read message happens.
Currently, though the value update ...
0
votes
1answer
22 views
Error on creating a KVO on a UIView
I am adding a UIView called bookViewContainer to my view controller, and I want to detect when its scale changes using KVO. Here is my viewDidLoad:
- (void)viewDidLoad
{
[super viewDidLoad];
...
15
votes
2answers
299 views
Objective-C variable… pointing to itself?
I spotted this construct in some of Apple's example code for dealing with key-value observing. When adding an observer, you can add a context (in the form of a void* variable) that can uniquely ...
2
votes
1answer
38 views
iOS: Key-Value Observing does not dismiss modal view
I have the following key value observer method in a modal view:
- (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context
{
if ...
0
votes
1answer
48 views
How to notify parent class from child?
I'm trying to resolves one architectural issue, but I want to find best suitable approach.
I have game scene GameLayer.h which is my view in this case. I have also GameEngine class which I'm trying ...
0
votes
1answer
76 views
Is -dealloc too late for unregistering from KVO
I'm having a model object, a direct NSObject subclass, whose properties are observed by a context object using KVO.
I'm unregistering from KVO in the dealloc of the model object like this:
- (void) ...
0
votes
1answer
48 views
Core Data Cache NSSet Properties
Not sure my title best describes my question but couldn't think of a better one!
I have 2 Managed Objects, 'Transaction' and 'Split'. Transaction has a 1 to many relationship with 'Split' and ...
0
votes
2answers
111 views
How to observe the property change if a particular obj using KVO?
I have a two controller namely aViewController and bViewController. I have a textField in bViewController (called txt1). I have declared like the following:
In bViewController.m:
- (void)viewDidLoad
...
0
votes
2answers
40 views
Key-Value Observing with NSMutableData iOS
In my model I have NSMutableData Object called data. I want to observe it from another object and get a notification when data is added or removed.
I understand that this is a to-many relationship, ...
2
votes
1answer
92 views
How do I get the “old value” from a ReactiveCocoa signal?
If I'm using RACable like this:
[RACAbleWithStart(self.myProp) subscribeNext:^(id x) {
// Do stuff
}];
How can can I access the old value of myProp (before the change the caused the signal to ...
0
votes
0answers
17 views
didReceiveMemoryWarning proper way to remove kvo on ivar object
I have a view controller with an object of type "YourClass" that internally has setup a Key-value observer. In my view controllers didReceiveMemoryWarning method i set this object to nil but I am ...
1
vote
0answers
354 views
KVO: +keyPathsForValuesAffecting<Key> doesn't work with (subclass of) NSObjectController
I have a KVO-able class (call it Observee), which affectedValue dynamic property is affected by affectingValue property. The dependency between the properties is defined by implementing ...
0
votes
2answers
32 views
Why do KVO observers see an empty NSKeyValueChangeNewKey when observing an unordered to-many relationship?
There is a property on a UIViewController subclass that changes when a view becomes visible. (A set stops being empty.) I've implemented KVC/KVO as follows:
- (void)viewWillAppear:(BOOL)animated {
...
2
votes
1answer
66 views
Would this be considered good programming practice when using KVO
I have a tableView (which is a form with around 11 fields), tableViewController and a instance of a class I'm using to be the model for the form. The tableView controller is updated with changes to ...
0
votes
1answer
63 views
NSArrayController, creating CoreData entities programatically, and KVO
I have an NSTableView whose NSTableColumn's value is bound to an NSArrayController. The arrayController controls a set of entities in my core data managed object context.
It works well, and when new ...
0
votes
3answers
52 views
Updating UIView subclass when its property (model) changes
I have a UIView subclass CustomView that has a property CustomObject *model, as well as a couple IBOutlet properties. CustomObject has two properties, an NSString *title and NSString *imageName. I ...
0
votes
2answers
53 views
Can I get by by without ever using KVO? [closed]
Strange grammar, but I want to ask if there are cases where if I don't KVO (Key Value Observation), the app just can't do certain things/features?
Thanks
1
vote
1answer
38 views
SPSearch key-value-observing and blocks
I'm working on a cross-source solution for playing music (see project on Github). Every so called 'content source' has methods which fetch tracks, albums and artists by a search query (defined in ...
0
votes
0answers
29 views
Are Fetched Properties KVO compliant?
Strange behavior into my Core Data application. I have an entity with a fetched property, whose result is stored into the content array of a controller.
The first time I run the application, the ...
4
votes
4answers
150 views
Crash when removeObserver for an Integer property?
I create a CustomView:UIView with XIB, load and addObserver for a NSInteger property like that:
//CustomView.h
@interface CustomView : UIView
@property (nonatomic) NSInteger inputStateControl;
...
3
votes
1answer
47 views
coredata kvo count
Is it possible to set up a KVO trigger for the count of a number of entities in CoreData?
At the moment I'm watching the "DidSaveNotification" but it triggers a lot.
Is there another, better way to ...
0
votes
2answers
83 views
UIWebView loading property never changes
I've got a UIWebView that's loading a simple request like so:
NSMutableURLRequest *theRequest = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:@"derp.com"] ...
3
votes
3answers
210 views
KVO addObserver to CoreData object's one-to-many relationship
Hi everyone years reading StackOverflow, now I decided to join. I am struggling to get this resolved:
I have a "Depot" entity that has two to-many relationships "Persons" and "Trucks". I want to ...
0
votes
2answers
50 views
KVC strange behavior
Why this code works fine:
NSArray* arr = @[[CALayer layer], [CALayer layer]];
NSString *sumKeyPath = @"@sum.bounds.size.width";
CGFloat totalSize = [[arr valueForKeyPath:sumKeyPath] floatValue];
...
0
votes
0answers
54 views
Any way to see who is triggering changes re: key value observing?
I'm using key value observing to perform specific actions whenever certain properties are changed (e.g., relayout subviews of a custom UIView whenever its frame or bounds change). Is there any way to ...
1
vote
1answer
64 views
Core Data keyPathsForValuesAffectingValueForKey only calling relationships, not attributes
I am using Core Data to model an entity which has both attributes and relationships. I would like to make one of the attributes dependent on two other relationships.
The Core Data FAQ and several ...
0
votes
1answer
39 views
UITableView reloads row with unwanted fade when previous section is hidden
I have a UITableViewController that displays properties of an NSManagedObject in a grouped tableView. The values of those properties can be changed from custom UITableViewCell subclasses that have ...
2
votes
0answers
113 views
NSSortDescriptor to sort by number of items in Core Data To-Many Relationships
It's a long standing problem when using Core Data to-many-relationships that it is very hard to sort a fetch request using NSSortDescriptor on a Parent entity based on the number of children are in a ...
5
votes
2answers
108 views
Is it better to observe properties or override setters?
Let's say we have this CustomButton interface:
@interface CustomButton : UIButton
@property (nonatomic, assign) CGFloat minWidth;
@end
Each time minWidth is changed, we want to layout our ...
1
vote
1answer
230 views
Restkit 0.20rc1 - Mapping Entity without KVC
So i am trying to mapping a JSON object without KVC with Restkit 0.20
The JSON whithout KVC
{
"created_at": "2013-03-11T22:13:05Z",
"facebookId": "2343434322",
"firstname": "testuser",
...
1
vote
1answer
75 views
Main Thread Crash Using Key Value Observing And ECSlidingView Library
I am using NSKeyValueChange to refresh images appeared in the tableview after getting them from the web service.
- (void)observeValueForKeyPath:(NSString *)keyPath
ofObject:(id)object
...
0
votes
2answers
144 views
iOS - How to remove observer from singleton NSObject for KVO?
I have a shared singleton class of NSObject that I have some operation queues running in. I get a crash on this:
[super observeValueForKeyPath:keyPath ofObject:object change:change context:context];
...
0
votes
1answer
48 views
KVO - interface orientation property
I'm trying to observe interface orientation by KVO of UIViewController from other object by this code :
[((UIViewController *)self.delegate) addObserver:self forKeyPath:@"interfaceOrientation" ...
0
votes
1answer
72 views
UIViewController - View events life cycle and registering for KVO / Notifications
I'm wondering if there's any way -viewWillAppear: would be called without a matching -viewDidAppear:. The root of my question is where to register for KVO and / or NSNotifications of an object that's ...
2
votes
1answer
69 views
KVO not working for Categories
I try to add a property to a class using a category. The property accessors look something like:
- (NSArray *)thumbnails {
return objc_getAssociatedObject(self, kThumbnails);
}
- ...
0
votes
1answer
53 views
how to get the keys of a nscoder
Is there a way to get the keys used in a NSCoder that has encoded a storyboard file? I see PSTCollectionView has used a lot of undocumented keys, how did they get them?
Specifically, I want the key ...
3
votes
2answers
136 views
NSTableView's documentView size observing
I'm inserting NSTableView in menubar popup.
I want to resize my popup's panel to fit tableview with its contents. For example, if there are no rows - tableview is hidden. With adding new rows I am ...
0
votes
2answers
78 views
KVO mechanism throwing error?
I m implementing one photo edit app in which i have one camera captured image and one is output image which is i shown beside of captured image. Whenever i change my captured image scaling or rotation ...
1
vote
1answer
54 views
How to observe the number of objects in a table view?
I need to observe the number of objects in a table view and display it with a badge. I use Core Data and NSFetchedResultsController in the project. Should I use KVO or other mechanisms?
1
vote
3answers
88 views
Take average of segments of NSArray
I have an NSArray of 100 numbers. I would like to create an NSArray of 5 numbers. The first number in the second array is the average of the first 20 numbers in the first array. The second number is ...
2
votes
1answer
61 views
Can KVO be used to observe a global variable?
I have a gloabal variable, User * currentUser;, which might be changed from any class. I want to save it to NSUserDefaults at any change.
Is it possible to use KVO for a global variable like this, or ...
0
votes
0answers
79 views
Two-way KVO: controller updates model, which notifies controller
I'm currently re-writing a form controller for iOS. It's a custom object that is bound to a model, and handles editing form fields, jumping to the prev/next field, handling custom keyboards, ...
0
votes
3answers
114 views
Send Notification When a Property is Changed Using KVO
I had a property named myName in my class, like:
@property (nonatomic, strong) NSString *myName;
I need to send a notification when the myName property's value is changed.
Now I'm doing something ...
0
votes
3answers
158 views
KVO on bool property, not invoke observeValueForKeyPath
I have an appDelegate, that has a property myWindow of MyWindowClass. I need observe bool property from myWindow. Than I have a CustomViewController, that needs to observe for bool value changes.
If ...





