问题 I'm making app with using Xamarin forms. I want to draw a smooth path (spline) with SKPath, but I am unable to find a simple way to achieve this. Skiasharp does not support it currently unless I make path smoothly myself. Thanks. 回答1: SkiaSharp supports cubic Bezier curves. So, what you can do, is divide the spline into segments (points determine segment endpoints), and draw each segment using a cubic Bezier curve. To do this, you need to introduce two control points between each point in