gpt4 book ai didi

iphone - 单例和 KVO 的问题

转载 作者:行者123 更新时间:2023-12-03 20:21:15 24 4
gpt4 key购买 nike

在我的应用程序中,我创建了自定义类,并且我正在使用 KVO 观察它的一个属性,这样,如果它的值发生更改,它会立即显示在第一个 View Controller 对象(标签或 ..)中

示例代码

myCustomClass.h

@interface myCustomClass : NSObject {
NSString * text;
}
@property (nonatomic, retain) NSString * text;
- (void)changetext;

myCustomClass.m

@implementation myCustomClass

@synthesize text;
static myCustomClass * _sharedInstance;

- (id)init
{
if ((self = [super init])) {
text = @ "";
}
return self;
}

+ (myCustomClass *)sharedInstance
{
if (!_sharedInstance) {
_sharedInstance = [[myCustomClass alloc] init];
}

return _sharedInstance;
}
- (void)changetext {
text = @ "changed";
}

firstViewController.h

@interface FirstViewController:UIViewController {

IBOutlet UILabel * label;
}
@property (nonatomic, retain) IBOutlet UILavel * label;

firstviewController.m

@implementation FirstViewController

@synthesize label;
- (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id) object change:(NSDictionary *)change context:(void *)context
{
label.text = [change valueForKey:@ "new"];
}
- (void)viewDidLoad {
myCustomClass * myEngine = [myCustomClass sharedInstance];
[myEngine addObserver : self forKeyPath : @ "text" options : NSKeyValueObservingOptionNew context : nil];
[myEngine changetext];

[super viewDidLoad];
}

但它没有改变数据,任何人都可以告诉我我错在哪里吗?

提前致谢

P.S:我写得很匆忙,如果有任何写作错误,请原谅我,并对我糟糕的英语表示歉意。

最佳答案

当您直接分配给实例变量而不是通过 setter 时,您需要使用 willChangeValueForKey:didChangeValueForKey: 自行发出更改通知。变量赋值没有什么魔力。

关于iphone - 单例和 KVO 的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4149800/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com