Post

Replies

Boosts

Views

Activity

Not sharing files with Xcode 16 Beta?
Hi, I am creating an app that would be able to share information between iPhone, iPad, etc. I created a new target and went to the Target Membership area and noticed the attachment instead of the list of files that the app can share between the current target and a new one. Is there another way to do it? Thanks, Dan Uff
1
0
800
Jul ’24
SwiftData: Unable to delete (Xcode 16)
I am using Xcode 16 and am doing a future app with SwiftData. I have the data in a List. When I try to delete a row, it deletes and seems to save the deletion. But when I list the data again, what I deleted comes back. Here's the code: { for index in indexSet { let chat = chatLog[index] modelContext.delete(chat) // do { // try modelContext.save() // // } catch { // // print("Error saving: \(error)") // // } } } CHAT: Is a variable to hold the data. CHATLOG: The variable in the List. Thank you. Dan Uff
4
2
1.1k
Jun ’24
Vision Pro Simulator Error
Hi. I am getting an error each time Xcode installs or upgrades itself. The simulator goes through the download process and them I get another error that says "Disk Image Not Available". I got this with the Beta over the summer and now. Anyone else have this problem? Thanks, Dan Uff
0
0
472
Feb ’24
Apple TV - ITMS 90013 - Corrupt Image File
Hi, I am receiving the above error after trying to upload it to the App Store. I would know what to do IF Xcode would provide WHICH file is corrupt. The error reads: ITMS-90013: Corrupt Image File - The image file $[IconName] appears to be corrupt. Again, I would know what to do if I had more information about which file(s) to fix. Could anyone FROM APPLE help me or give me a hint? Thanks, Dan Uff
2
0
857
Jan ’24
AppleTV - ITMS 90013 - Corrupt image file
Hi, I am receiving the above error after trying to upload it to the App Store. I would know what to do IF Xcode would provide WHICH file is corrupt. The error reads: ITMS-90013: Corrupt Image File - The image file $[IconName] appears to be corrupt. Again, I would know what to do if I had more information about which file(s) to fix. Could anyone FROM APPLE help me or give me a hint? Thanks, Dan Uff
0
1
1.2k
Jan ’24
Unable to install Vision Pro Simulator
Hi, I'd like to work on adding support for an app for the Vision Pro, but am unable to install the simulator. Xcode tries to install it but comes up with a blank error box. When I try and manually add it in the Devices & Simulators section, the Vision Pro isn't listed. Is anyone else having this problem? Xcode Version 15.0.1 (15A507) Thanks, Dan Uff
2
0
1.1k
Dec ’23
List with Sections output weird results?
Hi, This is my first time using a list with different sections. I am using an example from a documented video that I found on the Internet. I'm getting some weird results. Could someone point me in the right direction? Here's the code: import Foundation struct History: Identifiable, Hashable { var id = UUID() var hist: String } struct Titles: Identifiable, Hashable { var id = UUID() var Titl: String } struct Library: Identifiable, Hashable { var id = UUID() var lib: String } // Main Menu Options: var commandsA: [History] = [History(hist: "History"), History(hist: "Overview")] var commandsB: [Titles] = [Titles(Titl: "Title 1: Employment"), Titles(Titl: "Title 2: Public Service" ), Titles(Titl: "Title 3: Public Accommidations"), Titles(Titl: "Title 4: Telecommunication"), Titles(Titl: "Title 5: Miscellous")] var commandsC: [Library] = [Library(lib: "2010 Accessibilty Standards"), Library(lib: "2008 ADA Amendments"), Library(lib: "Phone Numbers"), Library(lib: "More Information")] struct MainMenu160: View { @State private var path = NavigationPath() var body: some View { NavigationStack(path: $path) { List { Section(header: Text("Overview")) { ForEach(commandsA) { secA in HStack { Image(systemName: "folder") Text("\(secA.hist)") }.font(.system(size: 20, weight: .bold, design: .rounded)) } } } List { Section(header: Text("Titles:")) { ForEach(commandsB) { secB in HStack { Image(systemName: "folder") Text("\(secB.Titl)") }.font(.system(size: 20, weight: .bold, design: .rounded)) } } } List { Section(header: Text("Library:")) { ForEach(commandsC) { secC in HStack { Image(systemName: "folder") Text("\(secC.lib)") }.font(.system(size: 20, weight: .bold, design: .rounded)) } } }.navigationTitle("ADA 1990") .navigationBarTitleDisplayMode(.automatic) } } struct MainMenu160_Previews: PreviewProvider { static var previews: some View { MainMenu160() } } } And here's the output:
1
0
670
Feb ’23
SwiftUI: Extra line in NavigationStack
Hi, I know its a simple thing, but I cannot figure it out. I have a list of items going to another view using NavigationStack. Everything seems fine, but when I go into the list, I have two back buttons, the title is shifted down, and its just annoying. Thanks for the help. Here's my code: struct ImportantNumbers: View {      var body: some View {          NavigationStack {       List(INDDataService.getAll(), id: \.id) { data in                  NavigationLink(value: data)         {                       HStack {                          Image(systemName: "circle.fill")               .foregroundColor(.green)                          Text(data.name)               .fontWeight(.bold)                                         .navigationTitle("Important U.S. ADA Numbers")               .navigationBarTitleDisplayMode(.inline)           }                            .navigationDestination(for: INDData.self) {  data in                                  Spacer()                                  Image(data.logo)                   .resizable()                   .frame(width: 200, height: 200)                                  Spacer()                                  Text(data.phone)                   .font(.system(size: 30, weight: .bold, design: .rounded))                                  Spacer()                                    .navigationTitle(data.name)                                }                                                    }                               }       }            }        } struct ImportantNumbers_Previews: PreviewProvider {     static var previews: some View {         ImportantNumbers()     } }
2
0
950
Dec ’22
iOS 16, AVFoundation, Text-to-Speech
Hi, I've been having problems with the AVFoundation and getting text to speech to work with iOS 16. I have a button which activates the text to speech that says the time. It worked with iOS 15 but not 16. Anyone else having a problem? Here's the code: (Note: dtd is coming from another Swift file). import Foundation import AVFoundation struct SUINightMode: View {      @ObservedObject var dtd = DateTimeData()      @Environment(\.presentationMode) var presentationMode      @State private var date = Date()        var body: some View {              ZStack {                  Color.black                    .ignoresSafeArea()                  GeometryReader { cen in                    VStack (alignment: .center) {                  Text("\(dtd.timeString(date: dtd.date))")             .foregroundColor(.green)           .font(.system(size: 120, weight: .bold, design: .rounded))           .alignmentGuide(VerticalAlignment.center, computeValue: { $0[.bottom] })                               .position(x: cen.size.width / 2, y: cen .size.height / 2)           HStack(alignment: .center) {           Text("\(dtd.dayString(date: dtd.date)), ")             .foregroundColor(.green)             .font(.system(size: 50, weight: .bold, design: .rounded))             Text("\(dtd.dateString(date: dtd.date))")             .foregroundColor(.green)           .font(.system(size: 50, weight: .bold, design: .rounded))     }     }       Image(systemName: "speaker.wave.3.fill")           .resizable()           .foregroundColor(.green)           .frame(width: 50, height: 30)           .padding(10)           .position(x: 120, y: 40)           .onTapGesture {             let synthesizer = AVSpeechSynthesizer()             let speakTime = AVSpeechUtterance(string: "The time is, \(dtd.timeString(date: dtd.date))...., today is \(dtd.dayString(date: dtd.date)) \(dtd.dateString(date: dtd.date))")             synthesizer.speak(speakTime)           }       Image(systemName: "arrow.left")           .resizable()           .foregroundColor(.green)           .frame(width: 45, height: 30)           .position(x: 40, y: 40)       .onTapGesture {         presentationMode.wrappedValue.dismiss()       }       .onAppear(perform: {let _ = self.dtd.updateTimer})       }     }       } } struct SUINightMode_Previews: PreviewProvider {     static var previews: some View {       if #available(iOS 15.0, *) {         SUINightMode()           .previewInterfaceOrientation(.landscapeRight)       } else {         // Fallback on earlier versions       }     } }
2
0
1.3k
Nov ’22
Not sharing files with Xcode 16 Beta?
Hi, I am creating an app that would be able to share information between iPhone, iPad, etc. I created a new target and went to the Target Membership area and noticed the attachment instead of the list of files that the app can share between the current target and a new one. Is there another way to do it? Thanks, Dan Uff
Replies
1
Boosts
0
Views
800
Activity
Jul ’24
SwiftData: Unable to delete (Xcode 16)
I am using Xcode 16 and am doing a future app with SwiftData. I have the data in a List. When I try to delete a row, it deletes and seems to save the deletion. But when I list the data again, what I deleted comes back. Here's the code: { for index in indexSet { let chat = chatLog[index] modelContext.delete(chat) // do { // try modelContext.save() // // } catch { // // print("Error saving: \(error)") // // } } } CHAT: Is a variable to hold the data. CHATLOG: The variable in the List. Thank you. Dan Uff
Replies
4
Boosts
2
Views
1.1k
Activity
Jun ’24
Vision Pro Simulator Error
Hi. I am getting an error each time Xcode installs or upgrades itself. The simulator goes through the download process and them I get another error that says "Disk Image Not Available". I got this with the Beta over the summer and now. Anyone else have this problem? Thanks, Dan Uff
Replies
0
Boosts
0
Views
472
Activity
Feb ’24
Apple TV - ITMS 90013 - Corrupt Image File
Hi, I am receiving the above error after trying to upload it to the App Store. I would know what to do IF Xcode would provide WHICH file is corrupt. The error reads: ITMS-90013: Corrupt Image File - The image file $[IconName] appears to be corrupt. Again, I would know what to do if I had more information about which file(s) to fix. Could anyone FROM APPLE help me or give me a hint? Thanks, Dan Uff
Replies
2
Boosts
0
Views
857
Activity
Jan ’24
AppleTV - ITMS 90013 - Corrupt image file
Hi, I am receiving the above error after trying to upload it to the App Store. I would know what to do IF Xcode would provide WHICH file is corrupt. The error reads: ITMS-90013: Corrupt Image File - The image file $[IconName] appears to be corrupt. Again, I would know what to do if I had more information about which file(s) to fix. Could anyone FROM APPLE help me or give me a hint? Thanks, Dan Uff
Replies
0
Boosts
1
Views
1.2k
Activity
Jan ’24
Direct Link to Vision Pro apps?
Hi, On my company's website, I like to provide a direct app store link to an app that's currently listed using the official App Store buttons. Will Apple be providing such access for Vision Pro apps? If so, where can I find this? Thanks, Dan Uff
Replies
0
Boosts
0
Views
528
Activity
Jan ’24
Unable to install Vision Pro Simulator
Hi, I'd like to work on adding support for an app for the Vision Pro, but am unable to install the simulator. Xcode tries to install it but comes up with a blank error box. When I try and manually add it in the Devices & Simulators section, the Vision Pro isn't listed. Is anyone else having this problem? Xcode Version 15.0.1 (15A507) Thanks, Dan Uff
Replies
2
Boosts
0
Views
1.1k
Activity
Dec ’23
Opinions on existing iOS app and Vision Pro
Hi, I have an existing iPhone/iPad app that I'm considering for Vision Pro. It's an informational app that shares info. with the watch. What would be better: To add a target for the vision pro. Make a separate app so I can use all of the VP's features. What are YOU doing to support the Vision Pro? Thanks, Dan
Replies
1
Boosts
0
Views
919
Activity
Oct ’23
WeatherKit not showing Temp Correctly on device
Hi, I'm in the process of developing a weather app using WeatherKit. Everything seems to be working fine in the Simulator, but when I put it on the device (iPhone 13 Pro Max) the temperature displays wrong. Example: On Simulator: 34 F On Device: 34.98 F Anyone else have this problem? Dan Uff
Replies
2
Boosts
0
Views
1.5k
Activity
Jun ’23
Unable to install iOS13 Beta
I am unable to install the above beta on an 2018 iPad Pro. Downloaded directly from this web site.Any ideas?Dan Uff
Replies
32
Boosts
0
Views
19k
Activity
May ’23
Apple Watch app NOT working on device
Hi, I've revised some apps that work on WatchOS via iOS. The WatchOS app works fine in the simulator, but when I try and run it on an actual watch, it either crashes immediately or shows a blank screen. I've enabled developer's mode. Is anyone else having issues? Thanks, Dan Uff
Replies
2
Boosts
0
Views
857
Activity
Mar ’23
List with Sections output weird results?
Hi, This is my first time using a list with different sections. I am using an example from a documented video that I found on the Internet. I'm getting some weird results. Could someone point me in the right direction? Here's the code: import Foundation struct History: Identifiable, Hashable { var id = UUID() var hist: String } struct Titles: Identifiable, Hashable { var id = UUID() var Titl: String } struct Library: Identifiable, Hashable { var id = UUID() var lib: String } // Main Menu Options: var commandsA: [History] = [History(hist: "History"), History(hist: "Overview")] var commandsB: [Titles] = [Titles(Titl: "Title 1: Employment"), Titles(Titl: "Title 2: Public Service" ), Titles(Titl: "Title 3: Public Accommidations"), Titles(Titl: "Title 4: Telecommunication"), Titles(Titl: "Title 5: Miscellous")] var commandsC: [Library] = [Library(lib: "2010 Accessibilty Standards"), Library(lib: "2008 ADA Amendments"), Library(lib: "Phone Numbers"), Library(lib: "More Information")] struct MainMenu160: View { @State private var path = NavigationPath() var body: some View { NavigationStack(path: $path) { List { Section(header: Text("Overview")) { ForEach(commandsA) { secA in HStack { Image(systemName: "folder") Text("\(secA.hist)") }.font(.system(size: 20, weight: .bold, design: .rounded)) } } } List { Section(header: Text("Titles:")) { ForEach(commandsB) { secB in HStack { Image(systemName: "folder") Text("\(secB.Titl)") }.font(.system(size: 20, weight: .bold, design: .rounded)) } } } List { Section(header: Text("Library:")) { ForEach(commandsC) { secC in HStack { Image(systemName: "folder") Text("\(secC.lib)") }.font(.system(size: 20, weight: .bold, design: .rounded)) } } }.navigationTitle("ADA 1990") .navigationBarTitleDisplayMode(.automatic) } } struct MainMenu160_Previews: PreviewProvider { static var previews: some View { MainMenu160() } } } And here's the output:
Replies
1
Boosts
0
Views
670
Activity
Feb ’23
SwiftUI: Extra line in NavigationStack
Hi, I know its a simple thing, but I cannot figure it out. I have a list of items going to another view using NavigationStack. Everything seems fine, but when I go into the list, I have two back buttons, the title is shifted down, and its just annoying. Thanks for the help. Here's my code: struct ImportantNumbers: View {      var body: some View {          NavigationStack {       List(INDDataService.getAll(), id: \.id) { data in                  NavigationLink(value: data)         {                       HStack {                          Image(systemName: "circle.fill")               .foregroundColor(.green)                          Text(data.name)               .fontWeight(.bold)                                         .navigationTitle("Important U.S. ADA Numbers")               .navigationBarTitleDisplayMode(.inline)           }                            .navigationDestination(for: INDData.self) {  data in                                  Spacer()                                  Image(data.logo)                   .resizable()                   .frame(width: 200, height: 200)                                  Spacer()                                  Text(data.phone)                   .font(.system(size: 30, weight: .bold, design: .rounded))                                  Spacer()                                    .navigationTitle(data.name)                                }                                                    }                               }       }            }        } struct ImportantNumbers_Previews: PreviewProvider {     static var previews: some View {         ImportantNumbers()     } }
Replies
2
Boosts
0
Views
950
Activity
Dec ’22
iOS 16, AVFoundation, Text-to-Speech
Hi, I've been having problems with the AVFoundation and getting text to speech to work with iOS 16. I have a button which activates the text to speech that says the time. It worked with iOS 15 but not 16. Anyone else having a problem? Here's the code: (Note: dtd is coming from another Swift file). import Foundation import AVFoundation struct SUINightMode: View {      @ObservedObject var dtd = DateTimeData()      @Environment(\.presentationMode) var presentationMode      @State private var date = Date()        var body: some View {              ZStack {                  Color.black                    .ignoresSafeArea()                  GeometryReader { cen in                    VStack (alignment: .center) {                  Text("\(dtd.timeString(date: dtd.date))")             .foregroundColor(.green)           .font(.system(size: 120, weight: .bold, design: .rounded))           .alignmentGuide(VerticalAlignment.center, computeValue: { $0[.bottom] })                               .position(x: cen.size.width / 2, y: cen .size.height / 2)           HStack(alignment: .center) {           Text("\(dtd.dayString(date: dtd.date)), ")             .foregroundColor(.green)             .font(.system(size: 50, weight: .bold, design: .rounded))             Text("\(dtd.dateString(date: dtd.date))")             .foregroundColor(.green)           .font(.system(size: 50, weight: .bold, design: .rounded))     }     }       Image(systemName: "speaker.wave.3.fill")           .resizable()           .foregroundColor(.green)           .frame(width: 50, height: 30)           .padding(10)           .position(x: 120, y: 40)           .onTapGesture {             let synthesizer = AVSpeechSynthesizer()             let speakTime = AVSpeechUtterance(string: "The time is, \(dtd.timeString(date: dtd.date))...., today is \(dtd.dayString(date: dtd.date)) \(dtd.dateString(date: dtd.date))")             synthesizer.speak(speakTime)           }       Image(systemName: "arrow.left")           .resizable()           .foregroundColor(.green)           .frame(width: 45, height: 30)           .position(x: 40, y: 40)       .onTapGesture {         presentationMode.wrappedValue.dismiss()       }       .onAppear(perform: {let _ = self.dtd.updateTimer})       }     }       } } struct SUINightMode_Previews: PreviewProvider {     static var previews: some View {       if #available(iOS 15.0, *) {         SUINightMode()           .previewInterfaceOrientation(.landscapeRight)       } else {         // Fallback on earlier versions       }     } }
Replies
2
Boosts
0
Views
1.3k
Activity
Nov ’22
Apple Weather on Mac?
Hi, Will the Apple Weather framework work on Mac using SwiftUI? The documentation doesn't say MacOS. Thanks, Dan Uff
Replies
1
Boosts
0
Views
1.1k
Activity
Aug ’22