每次修改数据时更新自定义视图绘图

发布于 2024-12-23 18:39:55 字数 359 浏览 1 评论 0 原文

我的目标是从单独的视图控制器(在不同的选项卡中)更新 UIView 的绘图,因此我为其创建了一个出口:

@property (strong,nonatomic) IBOutlet GraphView *graphview; (并合成了它)。

但是,我无法将此插座连接到我想要在情节提要中访问的视图。我尝试控制从 DataController.h 文件拖动到情节提要中的视图,反之亦然,但它没有设置。

编辑

澄清我的主要目标,在我的标签栏应用程序中,我需要从 Tab1 内的视图控制器访问 TAB2 中 scrollview 内的视图,以便每次向核心数据上下文添加值时进行更新。

My goal is to update a UIView's drawing from a seperate view controller (in a different tab) so I created an outlet for it:

@property (strong,nonatomic) IBOutlet GraphView *graphview; (and synthesized it).

However I cannot connect this outlet to the view I want to access in storyboard. I tried control dragging from the DataController.h file to the the view in storyboard and the other way around and it's not setting.

EDIT

clarifying my main goal that in my tab bar application, I need to access a view inside a scrolview in TAB2 from a view controller inside Tab1 in order to update everytime I add a value to the core data context.

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

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

发布评论

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

评论(1

脱离于你 2024-12-30 18:39:55

IBOutlet 是 Interface Builder Outlet,它们仅适用于与特定 viewController 关联的视图中的对象。您究竟想更新什么?

IBOutlets are Interface Builder Outlets, They are only for objects that are in the view associated with that particular viewController. What exactly are you trying to update?

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