-
Local Notification - Simple background notifications only
-
Foreground Notifcations - Notifications that also occur in the foreground while your app is open.
-
UserActionNotification - Create user actions in Notifications that appear below the notification when viewed from the main screen
-
buttonStateChange - Update a swiftUI button's state on button press
-
buttonChangeText - Update a separate swiftUI text field from a button press
-
exclusiveButton - Exclusive OR implemented with two buttons, one turns on while it turns off the other.
-
listinlist - Display a list in list
-
animatedbuttons - Basic example showing buttons with a scale effect on press as well as buttonstyle to apply to multiple buttons.
-
transitionButtons - Simple button that transitions into frame
-
sublistDelete - Delete from a sublist with tricky swiftui syntax
-
coredatasample - Intro to storing data on iOS
-
coredatarelationships - Core data with swiftui and member objects
-
photoLibrary - load photos from phone's library using wrapped UIKit
- UI Kit Basics - Follow basic arrangement and understanding of UIKit and storyboard
- Storyboard Actions - Add functions to storyboard
- UIKitNotification - Example of custom UIKit notification from Swift
- Basic Combine Example - Getting started, playground only example of pub/sub with Combine
- Full Combine Playground - Full Combine playground with examples
- Combine Grid Layout - Simple example using combine to layout an array and images
- Visual Combine Magic - involved 4 step tutorial on swiftui and combine
- Combine Free E-Book - Full book about combine
- AWS AppSync/Combine Tutorial - Intro tutorial into AWS AppSync resources and service
- Firebase Swift2 - Google exercises updated for swift2
- Dynamic Lists
- MVVM Example
- UserNotifications Framework Delegate Protocol - Handle notification actions
- Clean Architecture/Deep Linking example
- Navigate between views - Great tutorial on Navigation thats not just the navigationview/list example but rather logic based between views
- Swift $ Prefix - Explains that $ is a 'read/write binding'
- @Binding vs @Published - 'You'll generally use @Binding to pass a binding that originated from some source of truth (like @State) down the view hierarchy and @Published in an ObservableObject to allow a view to react to changes to a property.'
- Expandable List Detailed UI kit implementation of an expandable list
- Async Image Loading Demonstrates how to load images from urls with loading text
- Swift Reference
- Apple Swift Book
- Awesome Swift
- Custom SwiftUI Control
- Parsing JSON with Swift
- SwiftUI Guide
- TestFlight tutorial
- Local notification testing
Creates a string representing the given value as a sort of representation
import Foundation
struct Person {
var first: String
var last: String
var age: Int
}
let p = Person(first:"Matt", last:"Neuburg", age:3)
print("p is \(String(describing:p))") // p is Person(first: "Matt", last: "Neuburg", age: 3)
let x = 3
print("x is \(String(describing:x))") // x is 3
var someTuple = (9, 99)
print("someTuple is \(String(describing:someTuple))") // someTuple is (9, 99)
func someFunction(left: Int, right: Int) {}
print("someFunction is \(String(describing:someFunction))") // someFunction is (Function)
let someArray: [String] = ["Alex", "Brian", "Dave"]
print("someArray is \(String(describing:someArray))") // someArray is ["Alex", "Brian", "Dave"]
let someDictionary: [String: Int] = ["Alex": 31, "Paul": 39]
print("someDictionary is \(String(describing:someDictionary))") // someDictionary is ["Paul": 39, "Alex": 31]
var optionalInteger: Int?
optionalInteger = 42
print("optionalInteger is \(String(describing:optionalInteger))") // optionalInteger is Optional(42)
Returns an array containing the results of mapping the given closure over the sequence’s elements.
let cast = ["Vivien", "Marlon", "Kim", "Karl"]
let lowercaseNames = cast.map { $0.lowercased() } // 'lowercaseNames' == ["vivien", "marlon", "kim", "karl"]
let letterCounts = cast.map { $0.count } // 'letterCounts' == [6, 6, 3, 4]