摘要:let indexPath = NSIndexPath(forRow:0 ,inSection:0)self.tableView.insertRowsAtIndexPaths([indexPath], withRowAnimation: UITableViewRowAnimation.Automat...
阅读全文
摘要:var alert = UIAlertController(title: "", message: "", prefferedStyle: UIAlertControllerStyle.Alert)//添加按钮let oneAction = UIAlertAction(title: "", styl...
阅读全文
摘要:var str_componets = "I Like Swift "str_componets.componentsSeparatedByString(" ")这样,str_componets分成了四部分:["I", "Like", "Swift", ""]也可以用NSCharacterSet进行...
阅读全文
摘要:var str_trim = " !hi !23 !"str_trim.stringByTrimmingCharactersInSet(NSCharacterSet.whitespaceCharacterSet())//"!hi !23 !"去掉两边的空格str_trim.stringByTr...
阅读全文