iOS dev
@iosdevio
10.8K
subscribers
12
photos
5
files
6.04K
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://mobile.twitter.com/dev_jac/status/923668339276337152?utm_campaign=iOS%2BDev%2BWeekly&utm_medium=web&utm_source=iOS%2BDev%2BWeekly%2BIssue%2B398
Twitter
Julio Carrettoni
If you are an iOS developer, execute this: $ xcrun simctl delete unavailable It removes old simulators Xcode no longer use For me it was 6Gb
iOS dev
https://github.com/ivRodriguezCA/RE-iOS-Apps
GitHub
GitHub - ivRodriguezCA/RE-iOS-Apps: A completely free, open source and online course about Reverse Engineering iOS Applications.
A completely free, open source and online course about Reverse Engineering iOS Applications. - ivRodriguezCA/RE-iOS-Apps
iOS dev
https://blog.usejournal.com/the-pragmatic-guide-to-scalable-swift-architecture-in-2019-dbe662f7f516
Medium
The Pragmatic Guide to Scalable Swift Architecture for 2020
How to Transform Disaster iOS Projects into Excellent Swift Design Patterns one Sprint at a Time
iOS dev
https://fluffy.es/open-specific-view-push-notification-tapped/
fluffy.es - iOS development tutorials
Open app in specific view when push notification is tapped
Note: If your app project has SceneDelegate.swift (created in Xcode 11, and only target iOS 13 and above) , please read this post which cater for push notification tap with scenedelegate Say you have an app and want to redirect user to a specific view when…
iOS dev
https://www.avanderlee.com/swift/unknown-default-enums-in-swift/
SwiftLee
@unknown default usage with enums in Swift
Why and how to use @unknown default in Swift 5 and up. Learn why it does not always show up and why it's helping your project to be future proof.
iOS dev
http://www.vadimbulavin.com/the-power-of-namespacing-in-swift/
Yet Another Swift Blog
The Power of Namespacing in Swift
Swift 5 has limited support of namespacing. Let's fill in this gap and learn how we can declare a custom namespace in Swift by using nested types; which namespaces are provided in Swift by default; how to deal with name collisions in Swift.
iOS dev
https://www.swiftbysundell.com/posts/string-literals-in-swift
Swift by Sundell
String literals in Swift | Swift by Sundell
Being able to express basic values using inline literals is an essential feature in most programming languages. This week, let’s focus on string literals, by taking a take a look at the many different ways that they can be used and how we — through Swift’s…
iOS dev
https://theswiftdev.com/2019/04/08/how-to-migrate-your-ios-app-from-travis-to-bitrise/
iOS dev
https://cifilter.io/#CIBoxBlur
CIFilter.io
is a project I've been working on for the last few months, and today it's open source.
iOS dev
https://www.youtube.com/playlist?list=PLmEZjI7vcqES-hEaDBXVFtyJ_5mUa0umr&utm_campaign=iOS%2BDev%2BWeekly&utm_medium=web&utm_source=iOS%2BDev%2BWeekly%2BIssue%2B399
2019 Sessions
YouTube
2019 Sessions - YouTube
iOS dev
https://medium.com/@szenariy5/telegram-charts-contest-f371b59cc829
Medium
Telegram Charts Contest
So one day I got a message from Telegram about contest that they going to hold. Above I attached gif of example that they provided. Yup…
iOS dev
https://mecid.github.io/2019/04/10/inclusive-enums-with-optionset/
Majid’s
Inclusive enums with OptionSet
Enums are one of the most powerful features of Swift language. It forms Value-Oriented Programming in conjunction with Structs. Enum is the best way to describe the exclusive state in Swift, but what about the case when you need an inclusive state. Today…
iOS dev
https://www.dcordero.me/posts/improving_the_ios_development_cycle_with_breakpoints.html
dcordero.me
Improving the iOS development cycle with breakpoints
The Development, Build and Run cycle is by far one of the most annoying parts when working in native iOS development. Your thinking and creativity flows are suddenly stopped by unnecessary waiting times, just because for some reason Xcode decided that it…
iOS dev
https://medium.com/thecreateschool/migrating-from-swift-4-to-swift-5-2f425b99436b
Medium
Migrating from Swift 4 to Swift 5
A “Swift” guide of migrating your code from Swift 4 to Swift 5.
iOS dev
https://heartbeat.fritz.ai/working-with-create-mls-mldatatable-to-pre-process-non-image-data-424f916a093e
Heartbeat
Working with Create ML’s MLDataTable to Pre-Process Non-Image Data
In WWDC 18, Apple announced the Create ML to create and train custom machine learning models on your Mac. You can train models to perform…
iOS dev
https://www.swiftbysundell.com/posts/designing-swift-apis
Swift by Sundell
Designing Swift APIs | Swift by Sundell
Everyone is an API designer. While it’s easy to think of APIs as something that’s only relevant for SDKs or frameworks, it turns out that all app developers design APIs almost every single day. This week, let’s take a look at a number of tips and techniques…
iOS dev
https://learnappmaking.com/dry-dont-repeat-yourself/
Appy Pie
App Builder Appy Pie: #1 No-Code Platform | App Maker | Connect Apps | Websites | Chatbots | Designs
Create applications & automate workflows with Appy Pie’s workflow automation & no-code development platform.
iOS dev
https://nshipster.com/cggeometry/
NSHipster
CoreGraphics Geometry Primitives
Unless you were a Math Geek or an Ancient Greek, Geometry probably wasn’t your favorite subject in school. More likely, you were that kid in class who dutifully programmed all of those necessary formulæ into your TI-8X calculator to avoid rote memorization.
iOS dev
https://nshipster.com/guided-access/
NSHipster
Guided Access
Improve your analog device interactions with this one weird accessibility trick.
iOS dev
https://mecid.github.io/2019/04/17/asynchronous-completion-handlers-with-result-type/
Majid’s
Asynchronous completion handlers with Result type
Enums are one of my favorite features in Swift language. This week we will talk about Result enum, which had been a part of the standard library since Swift 5. With Result enum, we can easily describe the resulting state of an asynchronous operation. It can…
iOS dev
https://medium.com/flawless-app-stories/container-view-controllers-revisited-e076ef38853f
Medium
Container View Controllers Revisited
In this article, you’ll learn how to use container view controllers with a sample app that implements a variety of containment approaches. Let’s dive in..