-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSwiftLabelFitToSize.swift
79 lines (57 loc) · 2.42 KB
/
SwiftLabelFitToSize.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
//
// SwiftLabelFitToSize.swift
// cclt
//
// Created by Kohei Iwasaki on 1/5/15.
// Copyright (c) 2015 Kohei Iwasaki. All rights reserved.
//
import UIKit
extension UILabel {
/**
Truncate the text to fit.
:param: omission String which replace the last characters with. Defaults to '…'
*/
func fitToSizeByTruncate(omission:String="…") {
var fitSize = self.sizeThatFits(CGSizeMake(self.frame.size.width, CGFloat.max))
var fitArea = fitSize.width * fitSize.height
let selfArea = self.frame.size.width * self.frame.size.height
if fitArea <= selfArea {
return
} else {
let text = (self.text != nil) ? self.text! : ""
let textLength = countElements(text)
let omissionLength = countElements(omission)
let sizeForElement = fitArea / CGFloat(textLength)
var shortenTextLength = Int((fitArea - selfArea) / sizeForElement)
while(fitSize.height > self.frame.size.height){
if(textLength - shortenTextLength - omissionLength <= 0){ break }
let startIndex = advance(text.startIndex, 0)
let endIndex = advance(startIndex, textLength - shortenTextLength - omissionLength)
self.text = text[Range(start: startIndex, end: endIndex)] + omission
fitSize = self.sizeThatFits(CGSizeMake(self.frame.size.width, CGFloat.max))
shortenTextLength++
}
}
}
/**
Reduce the font size to fit.
:param: step Step of reducing font size. Defaults to 0.5
:param: minimumSize Minimum size of font size. Defaults to 5.0
*/
func fitToSizeByReduction(step:CGFloat = 0.5, minimumSize:CGFloat = 5.0) {
var fitSize = self.sizeThatFits(CGSizeMake(self.frame.size.width, CGFloat.max))
var fitArea = fitSize.width * fitSize.height
let selfArea = self.frame.size.width * self.frame.size.height
let fontName = self.font.fontName
var fontSize = self.font.pointSize
while(fitArea > selfArea && fontSize > minimumSize) {
fontSize -= step
if fontSize < minimumSize {
fontSize = minimumSize
}
self.font = UIFont(name: fontName, size: fontSize)
fitSize = self.sizeThatFits(CGSizeMake(self.frame.size.width, CGFloat.max))
fitArea = fitSize.width * fitSize.height
}
}
}