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
https://medium.com/@nathangitter/building-fluid-interfaces-ios-swift-9732bb934bf5
Medium
Building Fluid Interfaces
How to create natural gestures and animations on iOS
iOS dev
http://www.vadimbulavin.com/refactoring-massive-app-delegate/
Yet Another Swift Blog
Refactoring Massive App Delegate
App delegate connects your app and the system and is usually considered to be the core of every iOS project. The common tendency is that it keeps growing as the development goes, gradually sprouting with new features and responsibilities, being called here…
iOS dev
https://www.netguru.co/codestories/6-steps-to-integrate-classkit-into-your-app?utm_campaign=Codestories&utm_source=iosgoodies&utm_medium=social
Netguru
iOS App Development Services | Netguru
Netguru, a renowned leader in iPhone app solutions, delivers bespoke iOS app development tailored for forward-thinking entrepreneurs and dynamic small businesses.
iOS dev
https://rolandleth.com/extracting-the-location-from-a-photo
Extracting the location from a photo
iOS dev
https://skagedal.github.io/2018/08/03/bottom-sheet.html
skagedal.github.io
Creating a Bottom Sheet
The Bottom Drawer or Bottom Sheet is a user interface pattern that is used more and more on iOS, showing up in Apple’s own apps like Apple Music and Maps. Bu...
iOS dev
https://swiftrocks.com/writing-custom-pattern-matching-rules-in-swift.html
Swiftrocks
Writing Custom Pattern Matching in Swift
Pattern matching is available everywhere in Swift, and you have likely used it tons of times to deconstruct and bind values in things like switch cases. While regular switch cases are the most common use for patterns, Swift has several types of patterns which…
iOS dev
https://spin.atomicobject.com/2018/08/08/dim-popover-background/
Atomic Spin
How to Dim the Background of a Popover on iOS
In this blog post, I'll show you how you can dim not only the view behind the popover but also the status and navigation bar.
iOS dev
https://www.avanderlee.com/swift/where-using-swift/
SwiftLee
Where usage in Swift
Where is a powerful keyword within Swift to filter out values. It can be used in many different variants from which most of them are listed in this post.
iOS dev
https://medium.com/the-traveled-ios-developers-guide/uigraphicsimagerenderer-fe40edc3a464
Medium
UIGraphicsImageRenderer
Modern Drawing on iOS
iOS dev
https://theswiftdev.com/2018/08/07/generating-random-numbers-in-swift/
iOS dev
https://agostini.tech/2018/08/05/dijkstras-algorithm-in-swift/
agostini.tech
Dijkstra's Algorithm in Swift | agostini.tech
In this article we'll implement Dijkstra's algorithm in swift and we'll implement a simple priority queue that we'll use in the algorithm.
iOS dev
http://www.tekramer.com/downloading-caching-and-decoding-images-asynchronously-with-alamofire-part-1-swift-4
iOS dev
http://www.tekramer.com/downloading-caching-and-decoding-images-asynchronously-with-alamofire-part-2-swift-4
iOS dev
Downloading, Caching & Decoding Images Asynchronously with Alamofire: Part 1 and 2 (Swift 4)
iOS dev
https://khawerkhaliq.com/blog/swift-optionals-part-one/
Khawer Khaliq
Programming Safely and Effectively With Optionals in Swift (Part One)
This is Part One of a two-part article that looks at how optionals in Swift can help us better model real-world domains, solve common programming problems and write more robust and expressive code. This part looks at why Swift has optionals, basic optional…
iOS dev
https://khawerkhaliq.com/blog/swift-optionals-part-two/
Khawer Khaliq
Programming Safely and Effectively With Optionals in Swift (Part Two)
This is Part Two of a two-part article that looks at how optionals in Swift can help us better model real-world domains, solve common programming problems and write more robust and expressive code. This part covers powerful Swift language features and techniques…
iOS dev
Tools
iOS dev
https://github.com/agens-no/swiff
GitHub
GitHub - agens-no/swiff: Human readable time diffs on lines of output when running e.g. build commands like fastlane
Human readable time diffs on lines of output when running e.g. build commands like fastlane - GitHub - agens-no/swiff: Human readable time diffs on lines of output when running e.g. build commands ...
iOS dev
https://oleb.net/2018/uialertcontroller-textfield/
oleb.net
An iOS alert view with a text field and a “smart” OK button – Ole Begemann
I wrote a <code>UIAlertController</code> extension that allows you to perform validation of the text the user has entered while the alert is on screen. It’s nothing earth-shattering, but what I like about it is that the behavior is entirely encapsulated in…
iOS dev
https://nshipster.com/hashable/
NSHipster
Hashable / Hasher
Our topic this week is Hashable and its new related type, Hasher. Together, they comprise the functionality underlying two of Swift’s most beloved collection classes: Dictionary and Set
iOS dev
https://swiftunboxed.com/protocols/hashable/
Swiftunboxed
Hashable - Swift Unboxed
Hash values in Swift: more than just XOR.