Invalid large app icon. The large app icon in the asset catalog in App can’t be transparent or contain an alpha channel. For details, visit: https://developer.apple.com/design/human-interface-guidelines/app-icons. (ID: 66c7fa15-3081-433a-9f12-8b003fefedd3
I builded with sketch. I have a background, which is transparent the circles aren't fill. What I doing wrong.
Post
Replies
Boosts
Views
Activity
Hello,
i have a route with many points
for routes:
@Model
public class Route(){
public id: UUID = UUID()
var name: String
var desc: String
var points: [Point] = []
}
@Model
public class Point(){
public id: UUID = UUID()
var speed: double
var route : Route
}
when I like to add point.
route.point.append(point)
I get all ways this error:
Thread 1: EXC_BREAKPOINT (code=1, subcode=0x1cc1698ec)
my Xcode version 15.3
I have a @State transferable object
how can I change the values? They did changed hat on ui
greeting fabian
Hello,
I get this error:
How can I fix it and hope you can help me.
greetings Fabian
SendProcessControlEvent:toPid: encountered an error: Error Domain=com.apple.dt.deviceprocesscontrolservice Code=8 "Failed to show Widget 'de.polygondata.BikeComputer.BikeComputerWidget' error: Error Domain=FBSOpenApplicationServiceErrorDomain Code=1 "The request to open "com.apple.springboard" failed." UserInfo={NSLocalizedFailureReason=The request was denied by service delegate (SBMainWorkspace)., BSErrorCodeDescription=RequestDenied, NSUnderlyingError=0x600000c37150 {Error Domain=SBAvocadoDebuggingControllerErrorDomain Code=1 "Failed to get descriptors for extensionBundleID (de.polygondata.BikeComputer.BikeComputerWidget)" UserInfo={NSLocalizedDescription=Failed to get descriptors for extensionBundleID (de.polygondata.BikeComputer.BikeComputerWidget)}}, FBSOpenApplicationRequestID=0xbf3b, NSLocalizedDescription=The request to open "com.apple.springboard" failed.}." UserInfo={NSLocalizedDescription=Failed to show Widget 'de.polygondata.BikeComputer.BikeComputerWidget' error: Error Domain=FBSOpenApplicationServiceErrorDomain Code=1 "The request to open "com.apple.springboard" failed." UserInfo={NSLocalizedFailureReason=The request was denied by service delegate (SBMainWorkspace)., BSErrorCodeDescription=RequestDenied, NSUnderlyingError=0x600000c37150 {Error Domain=SBAvocadoDebuggingControllerErrorDomain Code=1 "Failed to get descriptors for extensionBundleID (de.polygondata.BikeComputer.BikeComputerWidget)" UserInfo={NSLocalizedDescription=Failed to get descriptors for extensionBundleID (de.polygondata.BikeComputer.BikeComputerWidget)}}, FBSOpenApplicationRequestID=0xbf3b, NSLocalizedDescription=The request to open "com.apple.springboard" failed.}., NSUnderlyingError=0x600000c36e50 {Error Domain=FBSOpenApplicationServiceErrorDomain Code=1 "The request to open "com.apple.springboard" failed." UserInfo={NSLocalizedFailureReason=The request was denied by service delegate (SBMainWorkspace)., BSErrorCodeDescription=RequestDenied, NSUnderlyingError=0x600000c37150 {Error Domain=SBAvocadoDebuggingControllerErrorDomain Code=1 "Failed to get descriptors for extensionBundleID (de.polygondata.BikeComputer.BikeComputerWidget)" UserInfo={NSLocalizedDescription=Failed to get descriptors for extensionBundleID (de.polygondata.BikeComputer.BikeComputerWidget)}}, FBSOpenApplicationRequestID=0xbf3b, NSLocalizedDescription=The request to open "com.apple.springboard" failed.}}}
Domain: DTXMessage
Code: 1
User Info: {
DVTErrorCreationDateKey = "2024-08-16 17:14:32 +0000";
}
SendProcessControlEvent:toPid: encountered an error: Error Domain=com.apple.dt.deviceprocesscontrolservice Code=8 "Failed to show Widget 'de.polygondata.BikeComputer.BikeComputerWidget' error: Error Domain=FBSOpenApplicationServiceErrorDomain Code=1 "The request to open "com.apple.springboard" failed." UserInfo={NSLocalizedFailureReason=The request was denied by service delegate (SBMainWorkspace)., BSErrorCodeDescription=RequestDenied, NSUnderlyingError=0x600000c37150 {Error Domain=SBAvocadoDebuggingControllerErrorDomain Code=1 "Failed to get descriptors for extensionBundleID (de.polygondata.BikeComputer.BikeComputerWidget)" UserInfo={NSLocalizedDescription=Failed to get descriptors for extensionBundleID (de.polygondata.BikeComputer.BikeComputerWidget)}}, FBSOpenApplicationRequestID=0xbf3b, NSLocalizedDescription=The request to open "com.apple.springboard" failed.}." UserInfo={NSLocalizedDescription=Failed to show Widget 'de.polygondata.BikeComputer.BikeComputerWidget' error: Error Domain=FBSOpenApplicationServiceErrorDomain Code=1 "The request to open "com.apple.springboard" failed." UserInfo={NSLocalizedFailureReason=The request was denied by service delegate (SBMainWorkspace)., BSErrorCodeDescription=RequestDenied, NSUnderlyingError=0x600000c37150 {Error Domain=SBAvocadoDebuggingControllerErrorDomain Code=1 "Failed to get descriptors for extensionBundleID (de.polygondata.BikeComputer.BikeComputerWidget)" UserInfo={NSLocalizedDescription=Failed to get descriptors for extensionBundleID (de.polygondata.BikeComputer.BikeComputerWidget)}}, FBSOpenApplicationRequestID=0xbf3b, NSLocalizedDescription=The request to open "com.apple.springboard" failed.}., NSUnderlyingError=0x600000c36e50 {Error Domain=FBSOpenApplicationServiceErrorDomain Code=1 "The request to open "com.apple.springboard" failed." UserInfo={NSLocalizedFailureReason=The request was denied by service delegate (SBMainWorkspace)., BSErrorCodeDescription=RequestDenied, NSUnderlyingError=0x600000c37150 {Error Domain=SBAvocadoDebuggingControllerErrorDomain Code=1 "Failed to get descriptors for extensionBundleID (de.polygondata.BikeComputer.BikeComputerWidget)" UserInfo={NSLocalizedDescription=Failed to get descriptors for extensionBundleID (de.polygondata.BikeComputer.BikeComputerWidget)}}, FBSOpenApplicationRequestID=0xbf3b, NSLocalizedDescription=The request to open "com.apple.springboard" failed.}}}
Domain: DTXMessage
Code: 1
Hi
I save a track and I get an error the last point isn't the user location by adding the point to core data.
Is core data to slow?
can you help me?
greeting Fabain
Hi @all,
I get follow error:
needs -Onone Swift optimization level.
how can I solve this?
thank you for the help
greeting Fabian
Hello,
I have class file, which should save data coreData and Im only able to save data via ui.
Do you have any example, how can I save data in core data via class files?
Greeting Fabian
Hello,
I have RouteManage, which is a Class and has following Protokolls:
NSObject, Codable ,ObservableObject and is an Singleton
and I have a RouteTrackingAttributes which has ActivityAttributes
I tried to set
let attributes = RouteTrackingAttributes()
let state = RouteTrackingAttributes.ContentState(routeManager: routeManger)
activity = try? Activity.request()
the update from singleton. But it dosen't work. It worked only once?
thank you for help
greeting Fabian
Hello
i have build my own dialogue a normal hstack vstack its working not in scrollview and I have two Problems and no idea:
at fresh loading page or scroll at scroll view the dialogue is showing. by the second tap not :(
the ingoresafeplaces doesn't work.
do you have an solution?
Greeting Fabian
i have a save function:
func save(){
if let encoded = try? JSONEncoder().encode(routes) {
UserDefaults.standard.set(encoded, forKey: saveKey)
}
}
and an init function:
init() {
if let data = UserDefaults.standard.data(forKey: saveKey){
print(data.base64EncodedString)
if let decoded = try? JSONDecoder().decode([RouteObject].self, from: data) {
routes = decoded
return
}
}
routes = []
}
onload this initiation there is no data. but 3382 bytes
how get I the content form data?
i don't know where the error is?
debug is not possible I did get the info
Hello,
I created an object which is inheriting from CLLocation.
The main cause is that I want to store more properties
Moreover I override the init function:
override init(latitude: CLLocationDegrees, longitude: CLLocationDegrees) {
super.init(latitude: latitude, longitude: longitude)
}
The objects aren't nil?
Can anyone help
Greeting Fabian
Hi
I've got a problem with saving data in CoreData.
My Entity has a name und an UUID. Moreover I will this object create and save in a manager class with out access a ui.
this massage was I get : "Accessing Environment's value outside of being installed on a View. This will always read the default value and will not update."
Do you have a solution?
Greeting
I trying to save the height from apple HealthKit in variables but it is only 0.0
Moreover I get the height in the result handler but I can't save it to the var.
Do you have any ideas?
greeting Fabian
Hello Everyone,
I have Xcode 13.4.1 and iPhone 13 with iOS version 15.6.1
At the step to deployment to my iPhone I get an error:
This operation can fail if the version of the OS on the device is incompatible with the installed version of Xcode. You may also need to restart your mac and device in order to correctly detect compatibility.
Do you have any ideas?
Greeting Fabian