Yes, everybody. Check here
Post
Replies
Boosts
Views
Activity
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.
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)
}
}
}
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.
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
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?
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.
here might be a better place to ask
for numbers in Range1.upperBound...Range2.lowerBound{
print(numbers)
}
Am I understanding your question correctly?
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.
I think you might be in a wrong place, try here:
iPhone community
have you receive any email from Apple with renewal confirmation?
when you login at:
apple developer
does it give you any correct information?
exactly what I was looking for, thank you very much.
Happy New Year 🎉
userDefaults did the job. Thanks for your suggestion. I also looked here:
https ://www.hackingwithswift. com/books/ios-swiftui/letting-the-user-mark-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.