Add String Constants
This commit is contained in:
parent
48194befb9
commit
beaf86b5ea
|
|
@ -1,5 +1,4 @@
|
|||
Analytics
|
||||
Appearance
|
||||
Cells
|
||||
Controllers
|
||||
Extensions
|
||||
|
|
|
|||
|
|
@ -0,0 +1,23 @@
|
|||
extension String {
|
||||
static let newLine = "\n"
|
||||
|
||||
static let empty = ""
|
||||
|
||||
static let whiteSpace = " "
|
||||
|
||||
static let dot = "."
|
||||
|
||||
static let comma = ","
|
||||
|
||||
static let zero = "0"
|
||||
|
||||
static let leftSquareBracket = "["
|
||||
|
||||
static let rightSquareBracket = "]"
|
||||
|
||||
static let asterisk = "*"
|
||||
|
||||
static let rightArrow = "›"
|
||||
|
||||
static let underscore = "_"
|
||||
}
|
||||
|
|
@ -50,8 +50,6 @@ targets:
|
|||
- "Info.plist"
|
||||
- path: {{project_name}}/Analytics
|
||||
buildPhase: sources
|
||||
- path: {{project_name}}/Appearance
|
||||
buildPhase: sources
|
||||
- path: {{project_name}}/Cells
|
||||
buildPhase: sources
|
||||
- path: {{project_name}}/Controllers
|
||||
|
|
|
|||
Loading…
Reference in New Issue