V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
iOS 开发实用技术导航
NSHipster 中文版
http://nshipster.cn/
cocos2d 开源 2D 游戏引擎
http://www.cocos2d-iphone.org/
CocoaPods
http://cocoapods.org/
Google Analytics for Mobile 统计解决方案
http://code.google.com/mobile/analytics/
WWDC
https://developer.apple.com/wwdc/
Design Guides and Resources
https://developer.apple.com/design/
Transcripts of WWDC sessions
http://asciiwwdc.com
Cocoa with Love
http://cocoawithlove.com/
Cocoa Dev Central
http://cocoadevcentral.com/
NSHipster
http://nshipster.com/
Style Guides
Google Objective-C Style Guide
NYTimes Objective-C Style Guide
Useful Tools and Services
Charles Web Debugging Proxy
Smore
chillwind
V2EX  ›  iDev

iOS Core Graphics 画圆角矩形的问题

  •  1
     
  •   chillwind · 2020-10-26 14:07:12 +08:00 · 2774 次点击
    这是一个创建于 1249 天前的主题,其中的信息可能已经有所发展或是发生改变。
    let path = UIBezierPath(roundedRect: CGRect(x: 10, y: item.20, width: item.355, height: 94), cornerRadius: 31).cgPath
    ctx.addPath(path)       
    ctx.setStrokeColor(UIColor(.red).cgColor)
    ctx.setLineWidth(1)
    ctx.drawPath(using: .stroke)
    

    代码中的 cornerRadius 31 是极限,再大的话圆角也不会变。如果是正方形圆角值可以跟边长一致,这种长方形的最大圆角值是怎么算出来的?

    1 条回复    2020-10-26 19:18:36 +08:00
    ysc3839
        1
    ysc3839  
       2020-10-26 19:18:36 +08:00 via Android
    不讨论具体平台,只讨论画圆角矩形的算法的话,应该是用九宫格画法吧?四个角由矩形换成四分之一圆,这样的话圆角最大半径应该是短边长度的一半吧?
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   1311 人在线   最高记录 6543   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 27ms · UTC 17:47 · PVG 01:47 · LAX 10:47 · JFK 13:47
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.