美文网首页iOS开发小技巧
iOS Swift 环形图表

iOS Swift 环形图表

作者: Mikebanana | 来源:发表于2018-08-28 15:15 被阅读2次

    调用方法

          let  ring = TDRingChartView(frame: CGRect(x: (self.view.frame.width-150)/2, y: 150, width: 150, height: 150), percentArr: [0.25,0.25,0.25,0.25], colorArr: [UIColor.yellow ,UIColor.red,UIColor.cyan,UIColor.brown], durtion: 0.5)
            ring.titleArr =  ["可用余额","我的理财","我的资产","我的遗产"]
            self.view.addSubview(ring)
    
    

    效果图

    效果图.gif

    里面代码还是比较简单的 可以随便改
    github地址:https://github.com/Mikebanana/LYRingChartView

    相关文章

      网友评论

        本文标题:iOS Swift 环形图表

        本文链接:https://www.haomeiwen.com/subject/mgggqftx.html