Answered step by step
Verified Expert Solution
Question
1 Approved Answer
This is done in playgrounds, how would I go about doing this? Navigate Editor Product Debug Source Control Window Help Ready | Today at 4:44
This is done in playgrounds, how would I go about doing this?
Navigate Editor Product Debug Source Control Window Help Ready | Today at 4:44 PM Lab2-3 Structures VoelkerFrank)9. Exercise-Type Properties and Methods Imagine you have an app that requires the user to log in. You may have a User struct similar to that shown below. However, in addition to keeping track of specific user information, you might want to have a way of knowing who the current logged in user is. Create a currentUser type property on the User struct below and assign it to a user object representing you. Now you can access the current user through the User struct. Print out the properties of currentUser. 6 struct User t var userName: String 8var email: String var age: Int There are other properties and actions associated with a User struct that might be good candidates for a type property or method. One might be a method for logging in. Go back and create a type method called LogIn(user:) where user is of type User. In the body of the method, assign the passed in user to the currentUser property, and print outa statement using the user's userName saying that the user has logged in. Below, call the LogIn(user:) method and pass in a different User instance than what you assigned to currentUser above. Observe the printout in the console Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started