connect outlets not working

I am playing in 7.3 and I have a prolem connecting the outlets I added to the view controller to the app delagate.


I have clicked on the main storyboard which opens a split screen that shows a list on the left of application scene, winodw controller screen and view controller screen. I click on the application scene and then right click on app delagate which shows my outlets. I tried clicking the dot and dragging to the storyboard and releasing on the appropriate outlet but nothing happens....


Can someone give me an idea what i'm doing wrong?

Accepted Reply

You are trying to control a view with the AppDelegate. A view can only be controlled by a View Controller - that's why it is called a ViewController. Each view has a View Controller assigned to it and only that ViewController can control the view.

Replies

I tried to insert a screen shot but apparently they don't allow that here

You are trying to control a view with the AppDelegate. A view can only be controlled by a View Controller - that's why it is called a ViewController. Each view has a View Controller assigned to it and only that ViewController can control the view.

Thanks, the tut (Book) apparently is wrong... You made sense though thanks...