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.
我正在创建许多 umorphic UIBezierPaths。我需要计算 UIBezierPath 的宽度和高度。我怎样才能做到这一点?
您可以使用以下代码行获取高度。
myPath.bounds.size.height;
而对于宽度...
myPath.bounds.size.width;
对于与贝塞尔曲线相关的所有内容,我不能推荐足够多的这个站点,其中包含与您的问题相关的一整章。
在迅速 4:
myPath.cgPath.boundingBox.width myPath.cgPath.boundingBox.height