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.
我需要在核心图中设置托管视图的背景颜色以清除颜色。有人可以帮我吗?
Core Plot 托管视图是UIView. 它应该默认为 clear backgroundColor。请参阅UIView 文档。
UIView
backgroundColor
您还可以使用图像在图表上设置填充,而不是将其放置在背景中。
graph.fill = [CPTFill fillWithImage:[CPTImage imageWithCGImage:myCGImage]];
这只是一个例子。CPTImage还有其他几种初始化方法。
CPTImage