iOS dev
@iosdevio
10.8K
subscribers
12
photos
5
files
6.07K
links
There is a single sponsored link in each issue (monday).
One sponsor per issue.
Every sponsored link should be highly relevant to Apple ecosystem app development.
Sponsored link price - 100$
Contact:
@tigorn
Download Telegram
Join
iOS dev
10.8K subscribers
iOS dev
http://vojtastavik.com/2018/09/02/what-is-inside-derived-data-xcode/
iOS dev
https://medium.freecodecamp.org/visualizing-random-distribution-algorithms-in-swift-and-arkit-4e05f502755b
freeCodeCamp.org
How to visualize random distribution algorithms in Swift and ARKit
A tree in the forest
iOS dev
http://www.vadimbulavin.com/xcode-source-editor-extension-tutorial/
Yet Another Swift Blog
Xcode Source Editor Extension Tutorial: Getting Started
Xcode is the core tool for Apple development. Although it is well-integrated with the most development workflows, from time to time you might feel like missing some basic features. In this article you will learn how to create Xcode Source Editor Extension…
iOS dev
https://agostini.tech/2018/09/02/enums-like-never-before/
agostini.tech
Enums like never before... | agostini.tech
A big problem currently unresolved in the swift world is in regards to enums. Filtering and equating enums in swift is verbose and might require some extra helper function or computed var on the enum itself.
iOS dev
https://www.swiftbysundell.com/posts/early-returning-functions-in-swift
Swift by Sundell
Early returning functions in Swift | Swift by Sundell
This week, let's take a look at how we can be inspired by the functional programming world to improve the structure and robustness of our Swift code - this time focusing on using functions that return objects and values as early as possible.
iOS dev
https://useyourloaf.com/blog/todo-fixme-and-compiler-directives/
TODO FIXME And Compiler Directives
iOS dev
https://github.com/ripienaar/free-for-dev
GitHub
GitHub - ripienaar/free-for-dev: A list of SaaS, PaaS and IaaS offerings that have free tiers of interest to devops and infradev
A list of SaaS, PaaS and IaaS offerings that have free tiers of interest to devops and infradev - ripienaar/free-for-dev
iOS dev
https://github.com/fastred/Optimizing-Swift-Build-Times#table-of-contents
GitHub
GitHub - fastred/Optimizing-Swift-Build-Times: Collection of advice on optimizing compile times of Swift projects.
Collection of advice on optimizing compile times of Swift projects. - fastred/Optimizing-Swift-Build-Times
iOS dev
https://medium.com/produkt-blog/prototyping-with-code-a0d2fe4ddb4f
Medium
Prototyping with code
This post guides you thorugh a few iterations we followed to achieve our new comic reader zoom feature.
iOS dev
https://www.appcoda.com/memory-management-swift/
AppCoda
Memory Management in Swift: Understanding Strong, Weak and Unowned References
Behind all the coding that we are doing, you probably have noticed some of your variables with the reference of strong, weak or unowned when writing your codes. What do they really mean? Does it make your variable stronger by declaring all with the reference…
iOS dev
https://github.com/tensorflow/swift-tutorials/blob/master/iris/swift_tensorflow_tutorial.ipynb
iOS dev
https://medium.com/argenthq/building-ethereum-dapps-on-ios-a413c72f47f7
Medium
Building Ethereum Dapps on iOS with web3.swift
A new, open source library for Dapps
iOS dev
https://parveenkaler.com/posts/unit-testing-uiviewcontrollers
iOS dev
https://nshipster.com/cmmotionactivity/
NSHipster
CMMotionActivity
Today’s iPhones are packed with a full complement of sensors that includes cameras, barometers, gyroscopes, magnetometers, and accelerometers. Like humans, they use permutations of different sensory information to make determinations about their position…
iOS dev
https://rolandleth.com/increasing-the-tap-area-of-a-uibutton
Increasing the tap area of a UIButton
iOS dev
https://useyourloaf.com/blog/adding-padding-to-a-stack-view/
Adding Padding To A Stack View
iOS dev
https://www.objc.io/blog/2018/09/11/building-a-form-library/
www.objc.io
Building a Form Library
Design goals, features and implementation
iOS dev
https://medium.com/swift2go/building-grpc-client-ios-swift-note-taking-app-6133c7d74644
Medium
Building gRPC Client iOS Swift Note Taking App
You can also read this article in my Xcoding With Alfian blog website using the link below.
iOS dev
https://www.scaledrone.com/blog/solid-principles-for-becoming-a-better-ios-swift-developer/
Scaledrone Blog
SOLID Principles for Becoming a Better iOS/Swift Developer
Become a better Swift developer by learning how to apply SOLID principles in your own code! SOLID stands for five guiding principles for OOP programming.
iOS dev
https://makeapppie.com/2018/09/12/changes-to-xcode-10-storyboards/
Make App Pie
Changes to Xcode 10 Storyboards.
There’s been some great changes to playgrounds in Xcode 10 that will make your code even easier to prototype than ever before. Let’s take a look at some of the changes. In Xcode 10 ope…
iOS dev
https://agostini.tech/2018/09/09/bellman-ford-algorithm-in-swift/
agostini.tech
Bellman-Ford Algorithm in Swift | agostini.tech
Bellman-Ford algorithm is a very versatile algorithm for finding the shortest path on an edge weighted digraph. In this article we'll implement it in swift.