All it takes is determining if there is a paid contract on file, no spammer is going to mess with having to pay for and losing an account each time due to the cost and it allows apple to enforce the rules more. No paid contract on file then read only access is provided. As for students validate them via their institution id numbers, parents where needed or a student paid contract. This will prevent furious consumers from posting here as well.
When used like this I have no issues:
struct SomeView: View {
@Environment(\.dismiss) var dismiss
// called via a Button or some UI action of SomeView when presented by a parent View
private func save() {
DispatchQueue.main.asyncAfter(deadline: .now() + 0.763) {
dismiss()
}
}
}
Forum access should be based on a paid contract with all the required paper work completed and once approved then access is granted to the forum. The same process for students, validate their student’s ID because by making it easily accessible for them it is opened for spammers.
Something like this will only happen if an object is dereferenced during access. So some root cause analysis based on what is actually calling these APIs from user/developer code is a good place to start.
All it takes is determining if there is a paid contract on file, no spammer is going to mess with having to pay for and losing an account each time due to the cost and it allows apple to enforce the rules more. No paid contract on file then read only access is provided. As for students validate them via their institution id numbers, parents where needed or a student paid contract. This will prevent furious consumers from posting here as well.
When used like this I have no issues:
struct SomeView: View {
@Environment(\.dismiss) var dismiss
// called via a Button or some UI action of SomeView when presented by a parent View
private func save() {
DispatchQueue.main.asyncAfter(deadline: .now() + 0.763) {
dismiss()
}
}
}
Forum access should be based on a paid contract with all the required paper work completed and once approved then access is granted to the forum. The same process for students, validate their student’s ID because by making it easily accessible for them it is opened for spammers.
Something like this will only happen if an object is dereferenced during access. So some root cause analysis based on what is actually calling these APIs from user/developer code is a good place to start.