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://www.smashingmagazine.com/2019/02/ios-performance-tricks-apps/
Smashing Magazine
iOS Performance Tricks To Make Your App Feel More Performant — Smashing Magazine
Good performance is critical to delivering a good user experience, and iOS users often have high expectations of their apps. A slow and unresponsive app might make users give up on using your app or, worse, leave a bad rating.
iOS dev
https://medium.com/avitotech/emcee-ios-ui-testing-infrastructure-at-avito-6aec41de4688
Medium
Emcee — Open Source Tool for iOS UI Testing Infrastructure
A short intro to our tool for running iOS UI tests.
iOS dev
https://fluffy.es/rounded-corner-shadow/
fluffy.es - iOS development tutorials
How to implement rounded corner image view with shadow
Rushing a project and no time to read explanation? Jump to the answer code Since iOS 11, the App Store app has adopted card UI like this : The card-like UI has rounded corner and a light drop shadow beneath it, how can we achieve it? Say we have a image
iOS dev
https://matteomanferdini.com/how-ios-view-controllers-communicate-with-each-other/
Matteo Manferdini
Passing Data Between View Controllers in iOS: The Definitive Guide
A complete guide of all the ways to pass data between view controllers, with specific examples, the best practices and the techniques to avoid.
iOS dev
https://agostini.tech/2019/02/18/reading-barcodes-and-qr-codes-with-avfoundation/
agostini.tech
Reading Barcodes And QR Codes With AVFoundation | agostini.tech
There's a really simple way to read barcodes, QR codes and all sorts of machine readable code by using nothing more than AVFoundation.
iOS dev
https://medium.com/@vixentael/popular-note-taking-apps-share-these-security-flaws-security-tips-for-developers-326180e41329
Medium
Popular note-taking apps share these security flaws: security tips for developers
I decided to publish common security flaws in note-taking apps with list of improvement suggestions (because security is complicated).
iOS dev
https://www.swiftbysundell.com/posts/inline-types-and-functions-in-swift
Swift by Sundell
Inline types and functions in Swift | Swift by Sundell
One way to make a code base easier to navigate, while still maintaining a solid overall structure, is to inline functionality whenever two pieces of code are heavily related. This week, let’s take a look at how that can be done using inline types and functions…
iOS dev
https://swift.org/blog/5-1-release-process/
Swift.org
Swift 5.1 Release Process
This post describes the goals, release process, and estimated schedule for Swift 5.1.
iOS dev
https://medium.com/android-things/building-a-kotlin-native-on-ios-android-6a6db9df5bef
Medium
Building a Kotlin Native on IOS/Android
In the following we will show you how to setup a basic iOS and Android Kotlin Native project to demonstrate the following functionalities:
iOS dev
https://theswiftdev.com/2019/02/19/styling-by-subclassing/
Theswiftdev
Styling by subclassing - The.Swift.Dev.
Learn how to design and build reusable user interface elements by using custom view subclasses from the UIKit framework in Swift.
iOS dev
https://martiancraft.com/blog/2019/02/notes-from-the-margins/
Martiancraft
Notes from the margins
Our @richturton shares some tips for working with layout margins in iOS.
iOS dev
http://blog.hellocode.co/post/wiggle-animation-uibarbuttonitem/
Hello Code
Adding a wiggle animation to a UIBarButtonItem
iOS dev
https://medium.com/fantageek/how-to-fix-wrong-status-bar-orientation-in-ios-f044f840b9ed
Medium
How to fix wrong status bar orientation in iOS
When I first started iOS, it was iOS 8 at that time, I had a bug that took my nearly a day to figure out. The issue was that the status…
iOS dev
https://felginep.github.io/2019-02-19/uiview-styling-with-functions
Pierre Felgines
UIView styling with functions
Today I want to talk about UIView styling. The common approach when we want to customize the display of native UI controls (for instance UIButton or UILabel) is to create a subclass that overrides a bunch of properties. That works well most of the time, but…
iOS dev
https://developer.apple.com/design/whats-new/
Apple
What’s new - Design - Apple Developer
Discover the latest additions and updates to design guidance. Explore inspirational designs, videos, articles, and resources.
iOS dev
https://medium.com/@kennethpoon/swift-localhost-making-xcuitest-great-again-115d93954cf1
Medium
Swift Localhost: Making XCUITest Great Again
Motivation
iOS dev
https://makeapppie.com/2019/02/20/fix-stack-view-disasters/
Make App Pie
Fix Stack View Disasters
Learn how to take a disaster of nested stack views and untangle it into a great user interface.
iOS dev
https://www.hackingwithswift.com/articles/178/super-powered-string-interpolation-in-swift-5-0
Hacking with Swift
Super-powered string interpolation in Swift 5.0
Strings get a massive power up in Swift 5.0.
iOS dev
https://www.swiftjectivec.com/ns_closed_enum/
Swiftjective-C
NS_CLOSED_ENUM
Enumerations provide clarity and intent. Some change and yet others remain stagnant, and now we program effectively for either case.
iOS dev
https://fluffy.es/open-settings-app/
fluffy.es - iOS development tutorials
Open settings app using openSettingsURLString
TL;DR Executive summary : // open the app permission in Settings app UIApplication.shared.open(URL(string: UIApplication.openSettingsURLString)!, options: [:], completionHandler: nil) From the previous Core Location tutorial, we need to prompt an authorization…
iOS dev
https://www.avanderlee.com/swift/required-keyword/
SwiftLee
Required keyword usage in Swift classes and structs
A detailed explanation of the required keyword. The keyword is often misunderstood and is used within classes, with protocols and more.