Marco Dinatsoli
Marco Dinatsoli

Reputation: 10570

Where to find the View object in the object library?

I am using Xcode Version 7.0 beta 6 (7A192o) and I am following this tutorial: https://developer.apple.com/library/prerelease/ios/referencelibrary/GettingStarted/DevelopiOSAppsSwift/Lesson5.html#//apple_ref/doc/uid/TP40015214-CH19-SW1

which states:

In your storyboard, use the Object library to find a View object and drag one into your storyboard

However in my object library there is no view, there are many of view controllers but that is not what I need.

Could you tell me please which view the tutorial wants?

This is an image from the tutorial:

enter image description here

but I don't have that view here.

Upvotes: 0

Views: 5282

Answers (2)

Midhun MP
Midhun MP

Reputation: 107121

The UIView and all it's variant will be in the Object library. There will be a lot of them, so just type "UIView" or just "View" in the filer textfield below the object library, then you will get the filtered list with the UIView object.

Object Library Filtering

Upvotes: 3

Ethan Cotler
Ethan Cotler

Reputation: 57

I believe the documentation is calling a view controller a view. So just grab a view controller and drag it into your storyboard.

Upvotes: 0

Related Questions