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.
在 iOS 核心图上,我的数据是实时的,我希望它在数据输入时向左滚动。我还希望用户能够水平平移,同时始终看到左侧可见的 y 轴。从一些谷歌搜索来看,CPTAxis 上似乎曾经有 isFloatingAxis 属性,但现在已经不存在了。我应该怎么办?我不认为设置约束是我需要的,因为我确实希望自由水平滚动以查看左右两侧的一些数据。
好的,我确实看到约束正是我所需要的。在CorePlotGallery示例目录下有一个CurvedScatterPlot示例,它显示了如何做到这一点。我可以让 CPTXYAxis 脱离axisSet并设置axisConstraints:
CorePlotGallery
CurvedScatterPlot
CPTXYAxis *y = axisSet.yAxis; y.axisConstraints = [CPTConstraints constraintWithLowerOffset:0.0];
它会起作用。