iOS dev
@iosdevio
10.8K
subscribers
12
photos
5
files
6.05K
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
https://fluffy.es/intro-to-creating-ui-in-code-1/
fluffy.es - iOS development tutorials
Intro to creating UI in code (programmatically) part 1 / 2 - Create UI using initializer
The debate of whether to create UI in Storyboard or Code has become so old now, there will always be developers on the different side justifying their view point, like: Using Storyboard can lead to complex merge conflict if there are multiple people working…
iOS dev
https://fluffy.es/intro-to-creating-ui-in-code-2/
fluffy.es - iOS development tutorials
Intro to creating UI in code (programmatically) part 2 / 2 - Create Auto Layout Constraint using NSLayoutAnchor
In the previous post, we have explained how to create UI elements like UILabel, UIButton etc using code. In this post, we will look into how to create Auto Layout constraint using code. This post assume you already know some basic Auto Layout knowledge. Starting…
iOS dev
https://fluffy.es/perform-action-notification-tap/
fluffy.es - iOS development tutorials
How to perform action when user tap on push notification (foreground and background)
(If you're searching for how to open specific view controller when a push notification is tapped, the answer is here ) How to make the app open a specific view controller when user tap on push notification? like when you tap the notification in twitter app…
iOS dev
https://agostini.tech/2018/09/23/building-the-enigma-machine-in-swift/
agostini.tech
Building the Enigma Machine in Swift | agostini.tech
In this article we'll build the enigma machine. We'll keep the implementation as close to the original as possible with a few modern modifications.
iOS dev
https://oleb.net/2018/photos-data-model/
Ole Begemann
PhotoKit’s data model
An entity graph of the Core Data data model used by Apple’s Photos framework on iOS.
iOS dev
https://www.swiftbysundell.com/posts/different-flavors-of-view-models-in-swift
Swift by Sundell
Different flavors of view models in Swift | Swift by Sundell
View models attempt to make it easier to write and maintain view-specific logic, by introducing dedicated types for it. This week, let’s take a look at a few different ways that various flavors of view models can be implemented in Swift.
iOS dev
http://christiantietze.de/posts/2018/09/search-string-parser/
Christian Tietze
Parse Boolean Search Expressions in Swift
Ever wanted to implement a full-text search in your app? Didn't find a boolean search expression parser that works? Look no further! For the initial release ...
iOS dev
http://www.vadimbulavin.com/multiple-inheritance-swift/
Yet Another Swift Blog
Multiple Inheritance in Swift
Although Swift does not support multiple inheritance, it offers rich API that gives possibility to simulate it. Let's take an in-depth look at multiple inheritance and its implementation in Swift.
iOS dev
https://www.hackingwithswift.com/articles/128/array-performance-append-vs-reservecapacity
Hacking with Swift
Array performance: append() vs reserveCapacity()
Sometimes its faster to let Swift figure things out for you
iOS dev
https://www.appcoda.com/swift-class-best-practice
AppCoda
Best Practices for Building Swift Classes
In this tutorial, I'm going to give you some best practices that will help you safely and effectively use classes (reference types) and reference semantics in Swift. Protocol-oriented programming (POP) and value semantics are all the rage now, but a promising…
iOS dev
https://medium.com/swift2go/how-to-test-with-fake-data-on-ios-66dc87bf093e
How to Test Using Fake Data on iOS
iOS dev
https://medium.com/swift2go/designing-entity-hierarchies-in-ios-class-inheritance-v-composition-fb0d98d9bb64
Medium
Designing Entity Hierarchies in iOS: Class Inheritance v Composition
A poorly designed entity hierarchy can be as unstable as this tower. Inflexible designs can be unaccepting of new entities or…
iOS dev
http://basememara.com/protocol-oriented-themes-for-ios-apps/
zamzam.io
Protocol-Oriented Themes for iOS Apps
iOS dev
https://flawlessapp.io/blog/best-ios-hacks-from-twitter-september-edition/
iOS dev
https://vimeo.com/nsspain?utm_campaign=iOS%2BDev%2BWeekly&utm_medium=web&utm_source=iOS%2BDev%2BWeekly%2BIssue%2B372
Vimeo
NSSpain
NSSpain is a member of Vimeo, the home for high quality videos and the people who love them.
iOS dev
https://benscheirman.com/2018/10/xcode-environment-specific-configuration/?utm_campaign=iOS%2BDev%2BWeekly&utm_medium=web&utm_source=iOS%2BDev%2BWeekly%2BIssue%2B372
Ben Scheirman
Xcode Environment Specific Configuration
Almost every app you build with Xcode will need some sort of configuration. Whether it is API Keys for 3rd party SDKs, the URL of your API, feature toggles, or a logging level of verbosity, it’s a good idea to keep this configuration separate from your code.
iOS dev
https://medium.com/@andrea.prearo/programmatic-views-in-swift-parallax-and-scale-5d8a0595ae82
Medium
Programmatic Views in Swift: Parallax and Scale
After using Storyboards for many years, I recently decided to switch to Programmatic Views and Programmatic Autolayout for my personal…
iOS dev
https://fluffy.es/push-notification-cloudkit/
fluffy.es - iOS development tutorials
Implement Push Notification easily using CloudKit
How do I generate certificates for push notification? Device tokens? APNS? Environment?! Is there a way to send push notification without relying on a backend? Firebase? Why the Firebase notification doesn't appear on my device?! A small task of wanting to…
iOS dev
https://www.simform.com/how-to-build-messaging-app-whatsapp-telegram-slack/
Simform - Product Engineering Company
How to Make a Messaging App like WhatsApp, Telegram, Slack (Updated)
Check out our step-by-step guide on developing a messaging app like WhatsApp and learn about its architecture, features, and cost in detail.
iOS dev
https://www.avanderlee.com/swift/performance-collections/
SwiftLee
Performance, functional programming and collections in Swift
Combine functional programming with performance by making use of these given best practices for common use cases in Swift.
iOS dev
https://www.swiftbysundell.com/posts/constructing-urls-in-swift
Swift by Sundell
Constructing URLs in Swift | Swift by Sundell
This week, let's take a look at various techniques for working with URLs in Swift, how to make our URL construction code more robust, and how different kinds of URLs might warrant different approaches.