-
In the last post, I took a look at how to share data between a share extension and its container app. I'll be improving that existing extension by replacing its default SLComposeServiceViewController with a UIViewController and adding in a custom view. To give a sense of where we started, to …
-
The fibonacci sequence is a pretty neat sequence of numbers. You may know them as the string of numbers were the next number is obtained by adding the previous two. This ends up looking like: [0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55] ...(and so on) and …