Swift 自定义分段控件 SegmentedControl
Posted swift语言
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Swift 自定义分段控件 SegmentedControl相关的知识,希望对你有一定的参考价值。
Swift 自定义 ios 分段控件 SegmentedControl 。
使用方法:
Create cell:
1 |
let cell = SPSegmentedControlCell. init () |
2 |
cell.label.text = "Avenir" |
3 |
cell.imageView.image = UIImage. init (named: "imageName" ) |
4 |
cell.layout = .textWithImage |
Create SegmentedСontrol:
1 |
let segmentedСontrol = SPSegmentedControl. init () |
2 |
segmentedСontrol.add(cell: cell) |
and set frame, add as subview.
开源代码主页 ❤
文章来自:51swift
以上是关于Swift 自定义分段控件 SegmentedControl的主要内容,如果未能解决你的问题,请参考以下文章