Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
加载视图后,我需要能够在 xcode 中更新我的贝塞尔路径的三个点。我想通过 NSTimer 更新我的贝塞尔路径。我能够绘制初始贝塞尔路径,但我不知道在初始加载后如何更改它!我正在制作弹弓,这就是为什么我需要经常改变我的贝塞尔路径。有什么建议么?
NSBezierPath是一条不可变的路径。您需要使用更新的点创建一个新的,而不是更改现有的。
NSBezierPath