Eliasz Sawicki

Eliasz Sawicki

iOS developer from Gdansk

My thoughts on - Whisper

- 1 min

Lately I’ve come across a nice pod which makes in-app messaging easier and decided to give it a quick look. I’ve created a test project in order to see how the pod behaves and my first impression was… “That was easy!”. If you want to find out how to use this pod, check out Hyperoslo’s github, which shows how easy it is to start sending your messages!

I took a quick look into the source code of this pod and instantly found two things that caught my eye. Creating UI components — First thing that was interesting for me, was the way UI components were initialized. For me, it’s normal to set everything up when I create an instance of my UIView. You can see an example of this in my test project, where in MainView class I create buttons in setupView method. In Whisper’s source code I found this: It’s an example of lazy initialization that can be used for UI components and some other variables. The private(set) is also great, as you can access the variable from outside without the need of providing additional getter methods.

Iterating

Second interesting thing was the use of sequence type methods for iterating:

I’m used to the method below, because I like the readability of it, but the forEach method looks nice as well.

My test project is available on my github if you want to give it a look.

This article is cross-posted with my my company blog

comments powered by Disqus
rss facebook twitter github youtube mail spotify lastfm instagram linkedin google google-plus pinterest medium vimeo stackoverflow reddit quora