Post

Replies

Boosts

Views

Activity

Xcode Error Account Authentication Error
I keep having my xcode app crash over and over while is am trying to write and test app. This has started happening since I upgraded to a Mac Studio. I never happened with my mac pro. It start show communication and then going to failure. Some apps work fine with the mac pro and were run on my iPad Air with the Mac Pro. It said to sign out of the Apple Id and back in and this does no good. Xcode is 14.2. I have beed using Xcode for years with out problems. My Apple ID have worked for years and now Xcode crashes randomly. I attached a pdf of the error /Users/jack_reigh/Desktop/Screenshot Xcode of Error.pdf
3
0
732
Mar ’23
XCODE 13.0 is the worst delivery I have received from Apple (Bad Bugs)
The Simulator does not execute the code the last version 12 worked. I will not prepare my device the last version of 12 did. The code below worked on the simulator and real iPad Air 4th gen. 1.) I can not even get the iPad Air connected with nothing running on the iPad. 2.) The simulators can not run the CardView correctly. When going from isFaceUp true to false the back ground to not complete refresh in the simulator or active preview. The right top card works but it begins not the refresh the top of the card as it goes left on the screen and get worse when the cards on that are further down the screen. The Cards refresh less and less of the top of the card as it gets lower on the screen on the left half of the screen. Boarder shows properly but red does not completely always fill when completely when isFaceUp goes false for every card. The ones on the top left work but as you go down and left less of the top of the card fills in the "RoundedRectangle(cornerRadius: 20.0)" I guess the "LazyVGrid(columns: [GridItem(.adaptive(minimum: 68))])" fails to work properly. Do not plan to upgrade the iPad Air since I do not trust Apple code now! // //  ContentView.swift //  Memorize // //  Created by Reigh Jack on 8/19/21. //  using CS193P Spring 2021 // import SwiftUI struct ContentView: View {     var emojis = ["🚲", "🚂", "🚁", "🚜", "🚕" ,"🏎", "🚖", "🚐", "🚒", "✈️", "🚀", "⛵️", "🛸", "🛶", "🚌", "🏍", "🛺", "🚠", "🛵", "🚗", "🚚", "🚇", "🛻", "🚝"]     @State var emojiCount = 20     var body: some View {         VStack{             ScrollView {                 LazyVGrid(columns: [GridItem(.adaptive(minimum: 68))]) {                     ForEach(emojis[0..<emojiCount], id: .self ) { emoji in                         CardView(content: emoji)                             .aspectRatio( 2/3, contentMode: .fit)                     }                 }             }             .foregroundColor(.red)         }         .padding(.horizontal)     } } struct CardView: View {     var content: String     @State var isFaceUp: Bool = false          var body: some View {         ZStack{             let shape = RoundedRectangle(cornerRadius: 20.0)             if isFaceUp {                 shape.fill().foregroundColor(.white)                 shape.strokeBorder(lineWidth: 3)                 Text(content).font(.largeTitle)             } else {                 shape.fill()             }         }         .onTapGesture { isFaceUp = !isFaceUp }     } } struct ContentView_Previews: PreviewProvider {     static var previews: some View {         ContentView()             .preferredColorScheme(.dark)         ContentView()             .preferredColorScheme(.light)   } }
9
0
1.9k
Oct ’21
Last Update blocked me from being able to runoff My iPad
Last Update blocked me from being able to runoff My iPad. I became untrusted!!!!!!!!!!!!
Replies
2
Boosts
0
Views
600
Activity
Nov ’24
Xcode Error Account Authentication Error
I keep having my xcode app crash over and over while is am trying to write and test app. This has started happening since I upgraded to a Mac Studio. I never happened with my mac pro. It start show communication and then going to failure. Some apps work fine with the mac pro and were run on my iPad Air with the Mac Pro. It said to sign out of the Apple Id and back in and this does no good. Xcode is 14.2. I have beed using Xcode for years with out problems. My Apple ID have worked for years and now Xcode crashes randomly. I attached a pdf of the error /Users/jack_reigh/Desktop/Screenshot Xcode of Error.pdf
Replies
3
Boosts
0
Views
732
Activity
Mar ’23
SwiftUI List on PadOs hides part of top entry with scroll
When I use iOS pad as target with a List the scroll the top part of the list is covered and hidden by the scroll bar data. Thiis does not happen with the desktop target. This makes a cross platform hard to do with List.
Replies
2
Boosts
0
Views
484
Activity
Oct ’21
XCODE 13.0 is the worst delivery I have received from Apple (Bad Bugs)
The Simulator does not execute the code the last version 12 worked. I will not prepare my device the last version of 12 did. The code below worked on the simulator and real iPad Air 4th gen. 1.) I can not even get the iPad Air connected with nothing running on the iPad. 2.) The simulators can not run the CardView correctly. When going from isFaceUp true to false the back ground to not complete refresh in the simulator or active preview. The right top card works but it begins not the refresh the top of the card as it goes left on the screen and get worse when the cards on that are further down the screen. The Cards refresh less and less of the top of the card as it gets lower on the screen on the left half of the screen. Boarder shows properly but red does not completely always fill when completely when isFaceUp goes false for every card. The ones on the top left work but as you go down and left less of the top of the card fills in the "RoundedRectangle(cornerRadius: 20.0)" I guess the "LazyVGrid(columns: [GridItem(.adaptive(minimum: 68))])" fails to work properly. Do not plan to upgrade the iPad Air since I do not trust Apple code now! // //  ContentView.swift //  Memorize // //  Created by Reigh Jack on 8/19/21. //  using CS193P Spring 2021 // import SwiftUI struct ContentView: View {     var emojis = ["🚲", "🚂", "🚁", "🚜", "🚕" ,"🏎", "🚖", "🚐", "🚒", "✈️", "🚀", "⛵️", "🛸", "🛶", "🚌", "🏍", "🛺", "🚠", "🛵", "🚗", "🚚", "🚇", "🛻", "🚝"]     @State var emojiCount = 20     var body: some View {         VStack{             ScrollView {                 LazyVGrid(columns: [GridItem(.adaptive(minimum: 68))]) {                     ForEach(emojis[0..<emojiCount], id: .self ) { emoji in                         CardView(content: emoji)                             .aspectRatio( 2/3, contentMode: .fit)                     }                 }             }             .foregroundColor(.red)         }         .padding(.horizontal)     } } struct CardView: View {     var content: String     @State var isFaceUp: Bool = false          var body: some View {         ZStack{             let shape = RoundedRectangle(cornerRadius: 20.0)             if isFaceUp {                 shape.fill().foregroundColor(.white)                 shape.strokeBorder(lineWidth: 3)                 Text(content).font(.largeTitle)             } else {                 shape.fill()             }         }         .onTapGesture { isFaceUp = !isFaceUp }     } } struct ContentView_Previews: PreviewProvider {     static var previews: some View {         ContentView()             .preferredColorScheme(.dark)         ContentView()             .preferredColorScheme(.light)   } }
Replies
9
Boosts
0
Views
1.9k
Activity
Oct ’21