字符串轉(zhuǎn)數(shù)值
extension String {
func toDouble() -> Double? {
return Double(self)
}
func toFloat() -> Float? {
return Float(self)
}
func toInt() -> Int? {
return Int(self)
}
func toURL() -> NSURL? {
return NSURL(string: self)
}
}
資源來自網(wǎng)絡(luò)和日常整理耗溜,持續(xù)更新