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/@tyronemichael/extending-your-modules-using-a-plugin-architecture-c1972735d728
Noteworthy - The Journal Blog
Extending your modules using a plugin architecture
Breaking your app up into modules has many benefits and it is extremely easy to achieve with Xcode using workspaces or Cocoapods. Whether…
iOS dev
https://www.hackingwithswift.com/articles/103/seven-useful-methods-from-cgrect?utm_campaign=Revue%20newsletter&utm_medium=Newsletter&utm_source=Swiftly%20Curated
Hacking with Swift
Seven useful methods from CGRect
Insetting, offsetting, transformation, and more!
iOS dev
http://swiftdeveloperblog.com/uiimagepickercontroller-in-swift-with-firebase-cheat-sheet/
UIImagePickerController in Swift with Firebase. Cheat Sheet.
iOS dev
Programming Notes for Professionals books
iOS dev
SwiftNotesForProfessionals.pdf
2.7 MB
iOS dev
iOSNotesForProfessionals.pdf
14.2 MB
iOS dev
Other books in this series:
https://books.goalkicker.com/
Goalkicker
Free Programming Books; HTML5, CSS3, JavaScript, PHP, Python...
Free Programming Books on Android development, C, C#, CSS, HTML5, iOS development, Java, JavaScript, PowerShell, PHP, Python, SQL Sever and more
iOS dev
https://medium.com/@tyronemichael/extending-your-modules-using-a-plugin-architecture-c1972735d728
Noteworthy - The Journal Blog
Extending your modules using a plugin architecture
Breaking your app up into modules has many benefits and it is extremely easy to achieve with Xcode using workspaces or Cocoapods. Whether…
iOS dev
https://iosreviewed.com/reviews-1/2018/5/22/continuous-integration-services-for-iphone-apps-in-2018
iOS dev
http://alisoftware.github.io/architecture/2018/05/20/dedicated-datasources/
Crunchy Development
Using Dedicated Objects as Delegates & Datasources
Making your Swift code more fun
🎉
, magical
✨
and crunchier
👌
iOS dev
https://medium.com/s23nyc-tech/prototyping-animations-in-swift-97a9cfb1f41b
Medium
Prototyping Animations in Swift
One of my favorite things about building mobile applications is bringing a designer’s creation to life. Being able to harness the power of…
iOS dev
https://medium.com/developermind/generics-in-swift-4-4f802cd6f53c
Medium
Generic Functions and Generic Types
As one of the most powerful features in Swift, Generics can be tricky.
iOS dev
https://medium.com/@tredasaibot/custom-uiview-in-swift-done-right-ddfe2c3080a
Noteworthy - The Journal Blog
Custom UIView in Swift done right
The internet has many solutions how to define your custom view, but many of them are wrong. They work, but they do not stick to Apple…
iOS dev
https://medium.com/@vin.pradeilles/achieving-pseudo-inheritance-with-structs-in-swift-b955511baea8
Medium
Response to
When developing in Swift, structs are a great way to model the data manipulated by the business layer. Unfortunately, many API have designed their business entities using languages like Java or PHP…
iOS dev
https://blog.superhuman.com/advanced-swift-debugging-for-uikit-e154d1c28aaf
Medium
Advanced Swift debugging for UIKit
Here we share several techniques to debug closed source libraries such as UIKit.
iOS dev
https://medium.com/developerinsider/best-ios-development-tips-and-tricks-6c42c1d208c1
Medium
Best iOS Development Tips and Tricks
This article was first published on DeveloperInsider. You can take a look at it here.
iOS dev
https://www.youtube.com/playlist?list=PLdr22uU_wISohI7PIhzq0gotGfKZl1lGo&utm_campaign=iOS%2BDev%2BWeekly&utm_medium=web&utm_source=iOS%2BDev%2BWeekly%2BIssue%2B353
iOS dev
https://medium.com/@minikin/benchmark-of-swift-extensions-vs-methods-swift-4-1-may-2018-2df3229f76fe
Medium
Benchmark of Swift extensions vs methods: Swift 4.1 (May 2018)
🤼
Motivation
iOS dev
http://www.vadimbulavin.com/multicast-delegate/
Yet Another Swift Blog
Multicast Delegate and Delegates Composition
Delegate is among the most commonly used patterns in Swift apps. Multicast delegate extends the canonical pattern allowing to delegate to more than one object.
iOS dev
http://www.vadimbulavin.com/code-injection-swift/
Yet Another Swift Blog
Dynamic Code Injection in Swift
Dynamic code injection in Swift allows to insert custom pieces of code to arbitrary methods non-intrusively. In this article let's see how to transparently inject logging to view controllers.
iOS dev
https://blog.krzyzanowskim.com/2018/05/29/any-object/
Marcin Krzyżanowski
Any[Object]
You use Swift AnyObject wrong.
Don't use AnyObject as a generics constraint. Don't do "is AnyObject", "as? AnyObject" to check if a variable is a class type. Don't use "AnyObject". Use "class" for a class-only protocol. Use "Any".