I’m an iOS developer with a background in design, marketing, and business. I’m available for freelance and contract iOS projects (my resume).
The keywords “public” “private” and “static” and others appear quite often in example code, answers on Stack Overflow, and projects on GitHub. What are they and what do they mean?
In the first part of this 2-part series, Getting the data, I showed you how to make a network request to get data from a url. I used URLSession and showed you multiple variations on this.
(updated code to Swift 3 on Apr 12, 2017)
There are many cases where you’ll want to access data from an API and use that data in your app. This can make your app quite useful. In a technical interview…
When you see something like this in your code
if let secondThing = firstThing { if let thirdThing = secondThing { if let fourthThing = thirdThing { print(fourthThing) } }}
App Store, here I come.
I’m in the process of submitting several apps to the App Store. Due to several rounds of feedback from people who have tested my apps, submitting them has taken a bit longer than expected. But the feedback has been really good and the apps are…
CocoHeads meeting, working on my app
Attended a CocoHeads meeting in Lehi. Received lots of feedback for DevMountain and bootcamps.
Closures, classes, structures, about General Assembly’s iOS course
Closures = Self-contained blocks of functionality that can be passed around and used in your code
Various learning
I am in the midst of both the Stanford class and the Apple tutorial. I want to finish lecture 1 of the Stanford class so I’ll focus on that today and tomorrow. Then I’d like to finish the Apple tutorial…