Post

Replies

Boosts

Views

Activity

Reply to how to make custom font to align in center of the frame
seems to be a font characteristic, I apply a padding to it: struct ContentView: View { @ScaledMetric(relativeTo: .largeTitle) var scaledPadding: CGFloat = 7     var body: some View {         VStack(spacing: 20){             Text("SEPTEMBER")                 .font(.largeTitle)                 .border(.blue)             Text("SEPTEMBER")                 .font(.custom("Founders Grotesk Light", size: 30))                 .border(.orange)             Text("SEPTEMBER")                 .font(.custom("Arial Hebrew", size: 20, relativeTo: .largeTitle))                 .padding(scaledPadding)                 .border(.red)         }     } }
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Mar ’23
Reply to iOS 16.3 in Simulator
doesn't look like there is a new Xcode for that release - no new beta atm, I don't think Apple release updated Xcode every time there is a new iOS released my understanding is, 16.3 doesn't different that much from 16.2 in terms of running the app on the sim
Feb ’23
Reply to swift and ChatGPT
ChatGPT is trained already - knows all the information. If you would like to create something similar, you would have to provide data for training and create a new model. Apple has machine learning but it's different to ChatGPT. I hope I understood your question correctly. You can use ChatGPT API in your app.
Topic: Programming Languages SubTopic: Swift Tags:
Jan ’23
Reply to Using real device on Xcode 14.2 'failed to prepare device for development'.
Yes, everybody. Check here
Replies
Boosts
Views
Activity
Mar ’23
Reply to XCode 14.2 breaks with iOS 16.4
Same here, I did remove phone from the Xcode devices, laptop reboot, iPhone reboot, with cable or no cable (over the network), all of that didn't help.
Replies
Boosts
Views
Activity
Mar ’23
Reply to how to make custom font to align in center of the frame
seems to be a font characteristic, I apply a padding to it: struct ContentView: View { @ScaledMetric(relativeTo: .largeTitle) var scaledPadding: CGFloat = 7     var body: some View {         VStack(spacing: 20){             Text("SEPTEMBER")                 .font(.largeTitle)                 .border(.blue)             Text("SEPTEMBER")                 .font(.custom("Founders Grotesk Light", size: 30))                 .border(.orange)             Text("SEPTEMBER")                 .font(.custom("Arial Hebrew", size: 20, relativeTo: .largeTitle))                 .padding(scaledPadding)                 .border(.red)         }     } }
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Mar ’23
Reply to not verified on this iphone and will not run until it is verified using your network connection
did you check with different internet connection e.g. Wi-Fi? My guess is, app is not asking for mobile data permission, therefore doesn't have internet and cannot be verified.
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Feb ’23
Reply to iOS 16.3 in Simulator
doesn't look like there is a new Xcode for that release - no new beta atm, I don't think Apple release updated Xcode every time there is a new iOS released my understanding is, 16.3 doesn't different that much from 16.2 in terms of running the app on the sim
Replies
Boosts
Views
Activity
Feb ’23
Reply to App Developer account update
I am sorry for your loss, you should contact Apple, but looks like you don't have access to anything what could possibly confirm your identify. Do you have any device with that Apple ID still active?
Replies
Boosts
Views
Activity
Feb ’23
Reply to swift and ChatGPT
ChatGPT is trained already - knows all the information. If you would like to create something similar, you would have to provide data for training and create a new model. Apple has machine learning but it's different to ChatGPT. I hope I understood your question correctly. You can use ChatGPT API in your app.
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Jan ’23
Reply to new Iphone 12 overheating
here might be a better place to ask
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jan ’23
Reply to How to print number, which missing between ranges?
for numbers in Range1.upperBound...Range2.lowerBound{     print(numbers) } Am I understanding your question correctly?
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Jan ’23
Reply to Is a paid developer account required to test an app on a device?
based on that website: apple memberships you should be able to test on the device with just an Apple ID. You might want to create a free account for each student or since they already have an Apple device, just ask them to use theirs credentials.
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Jan ’23
Reply to Videos get muted when I send them after I trim them
I think you might be in a wrong place, try here: iPhone community
Topic: App & System Services SubTopic: Hardware Tags:
Replies
Boosts
Views
Activity
Jan ’23
Reply to Paid for apple developer account renewal TWICE but nothing
have you receive any email from Apple with renewal confirmation? when you login at: apple developer does it give you any correct information?
Replies
Boosts
Views
Activity
Jan ’23
Reply to Enum with a description
exactly what I was looking for, thank you very much. Happy New Year 🎉
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Dec ’22
Reply to JSON Core Data favorites
userDefaults did the job. Thanks for your suggestion. I also looked here: https ://www.hackingwithswift. com/books/ios-swiftui/letting-the-user-mark-favorites
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Apr ’21
Reply to JSON Core Data favorites
I have a static data from JSON. Data doesn't change, just the flag with each item ( is favourite : Bool ). I am looking at the UserSettings as you suggested, I will need to play around with it. Thank you for your help.
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Mar ’21