Skip to content

Instantly share code, notes, and snippets.

@vani2
Created July 24, 2016 16:30
Show Gist options
  • Save vani2/f30375617dae7e9da1c3b6dcdf7de0db to your computer and use it in GitHub Desktop.
Save vani2/f30375617dae7e9da1c3b6dcdf7de0db to your computer and use it in GitHub Desktop.
//#1 Не указываем
service.searchWithKeyword(keyword,
offset: offset,
limit: limit,
completion: { result in
//...
}
failure: { error in
//...
})
//#2 Указываем
service.searchWithKeyword(keyword,
offset: offset,
limit: limit,
completion: { (result: [Transaction]) in
//...
}
failure: { (error: Error) in
//...
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment