Explore >> Select a destination


You are here

sintraworks.github.io
| | rx-marin.com
10.9 parsecs away

Travel
| | In my talk at dotSwift 2017 I start with generic overview of some of the RxSwift basics and move to three complete code examples. In three posts I'll post the sample code and comment shortly why I chose to highlight these exact examples. I already posted a write up on the GitHub API search example here: http://rx-marin.com/post/dotswift-search-github-json-api/. Let's continue with example number two. Presenting a View Controller from RxSwift RxSwift doesn't neccessarily force you into one architecture or...
| | ashishkakkad.com
13.5 parsecs away

Travel
| | Blocks in Objective-C In Objective-C we are using the blocks(completion handlers) with functions as follows : [code language="obj-c"] - (void)yourFunctionName:(NSString *)yourString withCompletionHandler:(void (^)(NSString *yourResult))block; [/code] Closures in Swift Closures are self-contained blocks of functionality that can be passed around and used in your code. Closures in Swift are similar to blocks in C and Objective-C ... Read more
| | benoitpasquier.com
13.0 parsecs away

Travel
| | It took me quite some time to get into Reactive Programming and its variant adapted for iOS development with RxSwift and RxCocoa. However, being fan of MVVM architecture and using an observer design pattern with it, it was natural for me to revisit my approach and use RxSwift instead. Thats what I'm going to cover in this post.
| | andreabergia.com
90.4 parsecs away

Travel
| Error handling is a fundamental aspect of programming. Unless you are writing hello world, you will need to handle errors in your code. In this post, I will discuss a bit the most common approaches used by various programming languages. Return error codes This is one of the most ancient strategies - if a function can fail, it can simply return an error code - often a negative number, or null.