我正在创建KVO的小型演示。据我所知,KVO用于通知属性值何时更改。我想在KVO上实现UIStepper。我想通知用户何时更改UIStepper的值。我对此做了一些代码如下。
ViewController.h

@interface ViewController : UIViewController
{
   IBOutlet UIStepper *stepper;
}

@property NSInteger intToObserve;

@end
ViewController.m
@interface ViewController ()

@end

@implementation ViewController
@synthesize intToObserve;

- (void)viewDidLoad
{
    [super viewDidLoad];
    stepper.minimumValue = 0;
    stepper.maximumValue = 1000;
    [self addObserver:self forKeyPath:@"intToObserve" options:NSKeyValueObservingOptionNew context:nil];
}

- (IBAction)valueChanged:(UIStepper *)sender
{
    double value = [sender value];
    intToObserve = value;
}

-(void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context
{
    NSLog(@"Notification Received");
}
@end

问题是,当我按下加号按钮时,步进值已更改,但我的通知方法未收到任何通知,甚至我在此处设置了断点,但控件没有到达那里。表示不调用-(void)observeValueForKeyPath

请提出一些想法,我在做什么错或要工作这是另一种解决方案?

感谢在广告中。

最佳答案

您需要通过setter方法进行更改,否则通知将不会触发。更改

intToObserve = value;


self.intToObserve = value;

关于iphone - 如何在UIStepper上实现KVO,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/17205880/

10-13 03:00