LoginSignup
4
3

More than 5 years have passed since last update.

Swift3での「componentsSeparatedByString」【メモ】

Last updated at Posted at 2016-11-02

いままで

Swift2.x
let Values = line.componentsSeparatedByString( "\n" )

これから

Swift3.x
let Values = line.components(separatedBy: "\n")
4
3
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
3