CarPlay is not another app, is just an extension of your current iOS app. You can not install “The CarPlay app.”. If you have experience developing apple watch apps you will be familiar. Everything runs on the iOS device, so READ MORE
Tag: swift
Can objective-c code call swift extension on Class?
I found out that in Swift 4.0 I had to add @objc in front of my extension keyword in order for the Swift extension methods to become visible by an instance of the Objc class I was extending. In short: File configuration setup: In CustomClassExtension: In READ MORE
Developing iOS 11 Apps with Swift by Stanford
Stanford – Developing iOS 11 Apps with Swift [2017-18]
Closures
Functional swift: All about Closures https://medium.com/@abhimuralidharan/functional-swift-all-about-closures-310bc8af31dd According to apple docs: Closures are self-contained blocks of functionality that can be passed around and used in your code. I tried to include all about closures here in this article. It’s a bit READ MORE
Swift Typealias
Swift Typealias https://www.programiz.com/swift-programming/typealias In this article, you will learn about typealias and its use cases in Swift. Table of Contents What is a typealias? How to create a typealias? Typealias for built-in types Typealias for user defined types Typealias for READ MORE