replace unavailable function invocation

This commit is contained in:
Martin Barreto 2016-01-30 01:03:45 -03:00
parent aaeabaaa4a
commit aefbb66e57
1 changed files with 1 additions and 1 deletions

View File

@ -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
}()