Skip to content

Instantly share code, notes, and snippets.

@yat1ma30
Created October 25, 2014 11:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yat1ma30/193905c610bda1395c5f to your computer and use it in GitHub Desktop.
Save yat1ma30/193905c610bda1395c5f to your computer and use it in GitHub Desktop.
Swiftで複数行なNSStringの1行目を取得する ref: http://qiita.com/ottati/items/f1019c821882697e9ed6
// textは複数行のNSStringオブジェクト
let title = text.componentsSeparatedByCharactersInSet(NSCharacterSet.newlineCharacterSet())[0]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment