Assessment

RSS for tag

Provide methods of assessment in education apps.

Posts under Assessment tag

2 Posts
Sort by:
Post not yet marked as solved
0 Replies
204 Views
The AEAssessmentSession delegate provides a assessmentSession:wasInterruptedWithError: callback with these instructions: If one or more subsystems fail during a session, the session tells its delegate by calling the assessmentSession:wasInterruptedWithError: method. If your app receives this callback, immediately stop the assessment, hide all sensitive content, and end the session. I would like to test this use case. How can I cause a system error that would cause it to happen? Documentation: https://developer.apple.com/documentation/automaticassessmentconfiguration/aeassessmentsessiondelegate/3543388-assessmentsession?language=objc
Posted
by selan.
Last updated
.
Post not yet marked as solved
0 Replies
487 Views
I am using navigation link to navigate using a button which is log out button when i click the button it takes me straight to login page i want the transition effect of the page to start from right to left instead of the opposite which is occurring              NavigationLink("", destination: login(),isActive: $goWhenTrue)           Button (action: { print("Button Tapped")}, label: {               Text("LogOut")                 .font(.headline)                 .foregroundColor(.white)                 .frame(width: 340, height: 50)                 .background(Color.blue)                 .clipShape(Capsule())                 .padding()                 .onTapGesture {                                       self.goWhenTrue = true                   if ((UserDefaults.standard.string(forKey: "Username") != nil)) {                     UserDefaults.standard.removeObject(forKey: "Username")
Posted
by Visakh.
Last updated
.