Let me preface by saying that I haven't worked on any Xcode projects on this machine before. I normally work on a computer at my school, but I'm using another as I am away right now.
I was following along with a tutorial video from a Swift course that I'm taking, but I quickly realized that Xcode isn't giving me the option to connect any outlets. If I attempt to connect a UITextField, it only gives me the option to connect an action. If I attempt to connect a UILabel, it won't give me any options at all. I am used to being given the option to connect Outlets, Outlet Connections, and Actions on a UITextField (and UIButton) and being given the sole option of Outlet on a UILabel.
I've tried to fix the issue by setting the 'class' of the ViewController, but I didn't find any options for that.
Any advice would be greatly appreciated!!
attempting to connect UITextField Outlet
attempting to connect UILabel Outlet
UITextField not giving any option other than Action
Github repository - https://github.com/plates-the-one/noOutlet
My guess is that you are attempting to do all this in the wrong storyboard. Work in Main.storyboard, not in LaunchScreen.storyboard.
Also it is crucial that you select the Identity inspector in the storyboard and change the Class from UIViewController to ViewController.