iOS dev
@iosdevio
10.7K
subscribers
12
photos
5
files
6.09K
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.7K subscribers
iOS dev
https://pspdfkit.com/blog/2018/binary-frameworks-swift/
Nutrient
Binary Frameworks in Swift | Nutrient
ABI? Module stability? What does binary stability mean, and how will it affect you?
iOS dev
https://medium.com/@volbap/debuggable-alerts-in-ios-df7e0a2fc779
Medium
Debuggable Alerts in iOS
How to introduce a subtle practice that can make developers save precious time by avoiding debug unnecessary stuff.
iOS dev
http://agostini.tech/2018/01/29/genetic-algorithms-in-swift-solving-tsp/
agostini.tech
Genetic Algorithms in Swift: Solving TSP | agostini.tech
Traveling salesman problem is a well-known problem in computing. The problem is: the salesman has to visit every city on his list, he has to visit each city only once and he has to take the shortest possible route. In this blog article we'll see how to solve…
iOS dev
http://agostini.tech/2018/01/21/introduction-to-functions-in-swift/
agostini.tech
Introduction to Functions in Swift | agostini.tech
It might seem strange at first to write an article on functions in swift. But functions in swift are a bit special and have some pretty cool characteristics. Hopefully by the end of this article you'll understand them better.
iOS dev
http://kean.github.io/post/creating_views
Alexander Grebenyuk
Creating Views in Code
Tips and tricks to keep code in your views nice and readable
iOS dev
https://eng.uber.com/neal/
iOS dev
https://theswiftarchitect.com/2018/01/16/using-the-map-function-on-an-optional-in-swift/
iOS dev
http://aplus.rs/2018/extending-marshal-for-dates/
Extending Marshal (JSON parsing) library to handle Date
iOS dev
http://swiftdeveloperblog.com/silent-remote-notifications-with-swift-and-firebase/
Swift Developer Blog
Silent Remote Notifications with Swift and Firebase - Swift Developer Blog
With this blog post, I would like to share with you how to send Silent Push Notification using CURL or Postman HTTP client via Firebase Cloud Messaging and how to receive silent push messages in your mobile app built with Swift. Silent push messages when…
iOS dev
https://www.invasivecode.com/weblog/scenekit-tutorial-part-1/
iOS dev
https://www.invasivecode.com/weblog/scenekit-tutorial-part-2/
iOS dev
http://developer.bombbomb.com/blog/2017/10/24/swift-data-detection/
Data Detection in Swift
iOS dev
https://motherboard.vice.com/en_us/article/a34g9j/iphone-source-code-iboot-ios-leak
Vice
Key iPhone Source Code Gets Posted Online in 'Biggest Leak in History'
Source code for iBoot, one of the most critical iOS programs, was anonymously posted on GitHub.
iOS dev
https://github.com/emrakul2002/iboot
iOS dev
https://www.raywenderlich.com/179260/accept-credit-cards-ios-apps-using-stripe
kodeco.com
Accepting Credit Cards In Your iOS App Using Stripe
In this tutorial, you will to learn how to accept credit cards in iOS using Stripe, a pain-free, developer-centric way to handle purchases in your apps.
iOS dev
https://cocoacasts.com/swift-fundamentals-working-with-optionals
Cocoacasts
Working With Optionals
Optionals are an integral aspect of Swift development. They highlight a core concept of the Swift language. Safety.
At first glance, optionals look inconvenient and a necessary evil of Swift development. That's true if safety isn't high on your list of…
iOS dev
https://www.cocoawithlove.com/blog/mvc-without-the-c.html
Cocoawithlove
Model-View-Controller without the Controller
The upcoming CwlViews library offers a syntax for constructing views that has a profound effect on the Cocoa applications, making them naturally 'unidirectional' and eliminating the need for `UIViewController` subclasses. In this article, I look at what the…
iOS dev
https://www.swiftbysundell.com/posts/transforming-collections-in-swift
Swift by Sundell
Transforming collections in Swift | Swift by Sundell
Almost every Swift program uses collections in one way or another. Whether it's to store values to be displayed in some form of list, to keep track of observers, or caching data - collections are everywhere. This week, let's take a look at some of the standard…
iOS dev
https://medium.com/@londeix/top-down-error-architecture-d8715a28d1ad
Medium
Top-down iOS error architecture
How to handle errors in iOS apps
iOS dev
https://www.swiftbysundell.com/posts/composing-types-in-swift
Swift by Sundell
Composing types in Swift | Swift by Sundell
Composition is a super useful technique that lets us share code between multiple types in a more decoupled fashion. It's often posed as an alternative to subclassing, with phrases like
iOS dev
https://www.swiftbysundell.com/posts/custom-operators-in-swift
Swift by Sundell
Custom operators in Swift | Swift by Sundell
Few Swift features cause as much heated debate as the use of custom operators. While some people find them really useful in order to reduce code verbosity, others think that they should be avoided completely. This week, let's take a look at a few situations…