skip to Main Content

How to use custom Xcode Cloud environment variables?

We have these environment variables within the Xcode Scheme Which works well locally with this code let webHost = ProcessInfo.processInfo.environment["HOST_URL"]! let apiHost = ProcessInfo.processInfo.environment["API_URL"]! let beamsKey = ProcessInfo.processInfo.environment["BEAMS_KEY"]! let mixpanelKey = ProcessInfo.processInfo.environment["MIXPANEL_KEY"]! However, when deploying using Xcode Cloud with the…

VIEW QUESTION

Swift Compile Error – Undefined symbols for architecture arm64 – Ios swift

I'm getting this error on my Swift iOs app when I try to compile: Undefined symbols for architecture arm64: "checkForiOS14 #1 () -> Swift.Bool in App_Clip.NoteView.(reminderSymbolName in _82CBB329F1D225F83535F59E6FD7F4C3).getter : Swift.String", referenced from: App_Clip.NoteView.(reminderSymbolName in _82CBB329F1D225F83535F59E6FD7F4C3).getter : Swift.String in NoteView.o ld:…

VIEW QUESTION

How to make each item clickable to show detailed view in LazyVGrid? – Ios swift

// // ContentView.swift // DemoProject import SwiftUI import CoreData struct ContentView: View { @Environment(.managedObjectContext) private var viewContext @FetchRequest( sortDescriptors: [NSSortDescriptor(keyPath: Item.timestamp, ascending: true)], animation: .default) private var items: FetchedResults<Item> private var gridItemLayout = [GridItem(.adaptive(minimum: 100))] @StateObject private var viewModel =…

VIEW QUESTION
Back To Top
Search