To run the example project, clone the repo, and run pod install
from the Example directory first.
let topItems = ["home_top_0":"你的优选",
"home_top_1":"专属推荐",
"home_top_2":"下午茶",
"home_top_3":"商家活动"].sorted(by: {return $0.0 < $1.0})
override func viewDidLoad() {
super.viewDidLoad()
self.title = "平均分布"
var items:[CFCenterItemView] = []
let itemViews = CFCenterItemViews(frame: CGRect(x: 0, y: 0, width: containerView.frame.size.width, height: containerView.frame.size.height))
itemViews.touchHandler = { index in
print(index)
}
for (key,value) in topItems {
let itemView = CFCenterItemView(frame: CGRect(x: 0, y: 0, width: 0, height: itemViews.frame.size.height))
itemView.backgroundColor = UIColor.white
let imageView = UIImageView(image: UIImage(named: key))
let label = UILabel()
label.text = value
label.font = UIFont.systemFont(ofSize: 15)
label.textColor = UIColor.black
itemView.setup(imageView: imageView, label: label, gap:10.0)
items.append(itemView)
}
itemViews.setup(items: items)
containerView.addSubview(itemViews)
}
CFCenterItemViews is available through CocoaPods. To install it, simply add the following line to your Podfile:
pod "CFCenterItemViews"
chengfei.heng, hengchengfei@sina.com
CFCenterItemViews is available under the MIT license. See the LICENSE file for more info.
Вы можете оставить комментарий после Вход в систему
Неприемлемый контент может быть отображен здесь и не будет показан на странице. Вы можете проверить и изменить его с помощью соответствующей функции редактирования.
Если вы подтверждаете, что содержание не содержит непристойной лексики/перенаправления на рекламу/насилия/вульгарной порнографии/нарушений/пиратства/ложного/незначительного или незаконного контента, связанного с национальными законами и предписаниями, вы можете нажать «Отправить» для подачи апелляции, и мы обработаем ее как можно скорее.
Комментарии ( 0 )