목록전체 글 (1484)
오늘도 공부
rxjava 가 메이저 버전 업(1->2)을 하면서 몇 가지 변경점이 생겼다.변경점에 대한 자세한 내용은 아래 링크를 참조하기 바란다.rxJava Wiki : https://github.com/ReactiveX/RxJava/wiki/What’s-different-in-2.0번역 : http://realignist.me/code/2017/01/25/rxjava2-changelog.htmlFlowable 이라는 base reactive class 가 추가 되었다. Observable 과의 차이는 backpressure buffer의 기본 탑재 유무이다.
출처 : https://stackoverflow.com/a/42005735I'd suggest using a Single as it is more accurate representation of the data flow: you make a request to the server and the you get either one emission of data OR an error:Single: onSubscribe (onSuccess | onError)?For an Observable you could theoretically get several emissions of data AND an errorObservable: onSubscribe onNext? (onCompleted | onError)?How..
https://objectivec2swift.com/#/home/converter/
https://brunch.co.kr/@svillustrated/12 바로가기
https://jongmin92.github.io/2017/08/11/Node/check-in-app-billing-purchase-validation/
Google for Mobile 2017: http://www.youtube.com/playlist?list=PL6OeXcmhVzfQi89BOOaHY5j1h26ccQXfK
http://m.blog.daum.net/_blog/_m/articleView.do?blogid=0OI3i&articleno=6590
https://www.bignerdranch.com/blog/splash-screens-the-right-way/
첫번째 링크 : http://johnholdsworth.com/bothworlds.html?utm_campaign=iOS%2BDev%2BWeekly&utm_medium=email&utm_source= 사용예제 : https://github.com/SwiftJava/swift-android-kotlin
해당 예제 바로 가기!!https://github.com/MindorksOpenSource/android-mvp-architecture Read the below listed articles. They describe the MVP concepts and the Project structure.MVP: Part 1MVP: Part 2MVP: Part 3Extension with Interactors and RepositoriesThe app has following packages:data: It contains all the data accessing and manipulating components.di: Dependency providing classes using Dagger2.ui: View c..
