Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Introduction to Swift Deep Dive. #cm_osaka

Introduction to Swift Deep Dive. #cm_osaka

【10/26(金) 大阪】第2弾クラスメソッドのモバイル開発を知る!第1回〜iOS編

https://classmethod.connpass.com/event/104802/

Takaaki Tanaka

October 26, 2018
Tweet

More Decks by Takaaki Tanaka

Other Decks in Technology

Transcript

  1. "#*

  2. 4*-

  3. wඇಉظॲཧͷ࠷ऴతͳ׬ྃ΋͘͠͸ࣦഊΛ ද͢৔߹ɺॻ͖ํʹΑͬͯ͸൥ࡶʹͳΔ 1SPNJTF doSomething().then(function(result) { return doSomethingElse(result); }) .then(function(newResult) {

    return doThirdThing(newResult); }) .then(function(finalResult) { console.log('Got the final result: ' + finalResult); }) .catch(failureCallback);
  4. val f: Future[List[String]] = Future { session.getRecentPosts } f onFailure

    { case t => println("エラーが発⽣生した: " + t.getMessage) } f onSuccess { case posts => for (post <- posts) println(post) } 'VUVSF