Post not yet marked as solved
The following app builds, but causes a runtime crash when trying to execute on an iOS 14.7 device. Using Xcode 13b5, macOS Monterey b5, iOS 15.b6 & iOS 14.7
import SwiftUI
struct ContentView: View {
@State private var text = "This app causes a runtime error on ios 14.7"
@available(iOS 15.0, *)
@FocusState var isInputActive: Bool
var body: some View {
if #available(iOS 15.0, *) {
TextEditor(text: $text)
.focused($isInputActive)
} else { // ios14 or <
TextEditor(text: $text)
}
}
}
Post not yet marked as solved
Over the past few days, my experience with CloudKit Console has been terribly frustrating... recurring http timeouts, 502 Bad Gateways, and - worst of all - I've got an app which is posting to CloudKit via CoreData and although it DOES sync the data between my devices - CKConsole fails to show ANY records in the specified database... (I've even gone so far as to check BOTH public and private databases, in EACH of the CK Containers associated with my AppleID - desperately hoping to find these records via CKConsole - but alas, no such luck.)
Has anyone built an app (or MacOS application) which mirrors (and more importantly, improves upon) the functionality that is supposed to be available via CKConsole?
Prior to making the switch to using CloudKit, I've previously used MySQL on a long list of non-iPhone applicaitons - and having access to a command-line interface to the SQL database has always been a very valuable part of my development process. Can anyone suggest ways to re-introduce that CLI type of rapid prototyping into a CloudKit project? Is there a CLI that speaks directly to CloudKit databases (both public and private)?
Many thanks...
I'm trying to update to 15 beta 2 a brand new iPad Pro 12.9 running 14.5.1, from a brand new M1 MBAir running Monterrey beta 2 (for M1 Macs), and it was "updating" for a couple of hours. I gave up and then downloaded & installed "Device Support for iOS 15" - and tried again. Same results. I see that there's a known issue regarding the 11" iPad Pro - but does anyone have any suggestions for me?
I do have a 2020 iMac that's running Big Sur 11.4 - should I attempt the update from there?