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 中合并两个文件,因为我已经为“线图”和“条形图”创建了两个数据,现在我需要在同一个图表上显示两个数据的视图?
如何在 XCode 中合并条形图和折线图?没有核心情节?
谢谢
只需在图表上绘制您的两个“数据”。如果您的图表使用数组来保存其数据,请将第二组数据附加到第一组数据。
finalDataArray = [firstDataArray arrayByAddingObjectsFromArray:secondDataArray];