对 UIView 的 ivars 进行键值编码

发布于 2024-08-01 19:29:56 字数 630 浏览 4 评论 0原文

我有兴趣在 UIView 更改时运行一些方法,无论是通过帧更改还是仿射变换。 值变化来做到这一点

我最好的想法是通过观察myView.frame 和 myView.transform 的

。 然而,UIViews 的视图部分不是键值对。 幸运的是,CALayer 是视图的模型部分。 所以我设置如下:

    [self.layer addObserver:self forKeyPath:@"transform" 
options:(NSKeyValueObservingOptionNew) context:NULL];

在视图的 viewDidLoad: 部分。 我对“frame”键做了同样的事情。 但是,当视图发生更改时,无论是通过在其超级视图中移动视图还是通过仿射变换,

    - (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object
 change:(NSDictionary *)change context:(void *)context {

都不会调用该方法: 是什么赋予了? 有没有更好的方法来观察 UIViews 框架中的变化并进行转换?

I'm interested in running some methods when my UIView is changed, either through a frame change or an affine transformation. My best idea is to do this by observing value changes for:

myView.frame and myView.transform.

However, the view portion of UIViews is not Key-Value complaint. Fortunatly the model portion of the view, the CALayer is. So I setup like:

    [self.layer addObserver:self forKeyPath:@"transform" 
options:(NSKeyValueObservingOptionNew) context:NULL];

In the viewDidLoad: portion of the view. I've done the same for the "frame" key. But when the view is changed, either by moving the view around in it's super view, or by affine transformations, the method:

    - (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object
 change:(NSDictionary *)change context:(void *)context {

is never called. What gives? Is there a better way to observe changes in a UIViews frame and transform?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

左秋 2024-08-08 19:29:56

我不认为 KVC 合规性意味着 KVO 合规性。 我想我读到出于性能考虑,KVO 不适用于 CALayer 属性。

I don't think KVC compliance implies KVO compliance. I think I read that KVO is not available for CALayer properties due to performance considerations.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文