From aefbb66e57600d762bc57f3bf8d3fd19b3ce06f3 Mon Sep 17 00:00:00 2001 From: Martin Barreto Date: Sat, 30 Jan 2016 01:03:45 -0300 Subject: [PATCH] replace unavailable function invocation --- Sources/ButtonBarViewCell.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/ButtonBarViewCell.swift b/Sources/ButtonBarViewCell.swift index 224c6e5..b4830ae 100644 --- a/Sources/ButtonBarViewCell.swift +++ b/Sources/ButtonBarViewCell.swift @@ -31,7 +31,7 @@ public class ButtonBarViewCell: UICollectionViewCell { let label = UILabel(frame: self.contentView.bounds) label.autoresizingMask = [.FlexibleWidth, .FlexibleHeight] label.textAlignment = .Center - label.font = UIFont.systemFontOfSize(14.0, weight: UIFontWeightMedium) + label.font = UIFont.boldSystemFontOfSize(14.0) return label }()