opensource(2)
-
[Swift-OpenSource] scalessec / Toast-Swift
# Basic Examples // basic usage self.view.makeToast("This is a piece of toast") // toast with a specific duration and position self.view.makeToast("This is a piece of toast", duration: 3.0, position: .top) // toast presented with multiple options and with a completion closure self.view.makeToast("This is a piece of toast", duration: 2.0, point: CGPoint(x: 110.0, y: 110.0), title: "Toast Title", ..
2020.11.02 -
[오픈소스] Android Asynchronous Http Client
Android 비동기 Http 통신 모듈 ○ GET ○ POST ○ Upload File loopj.com/android-async-http/ Android Asynchronous Http Client View Code on GitHub Overview An asynchronous callback-based Http client for Android built on top of Apache’s HttpClient libraries. All requests are made outside of your app’s main UI thread, but any callback logic will be executed on the same thread as loopj.com
2020.07.10