0

I've got a Table View Controller object in my Storyboard, but I've made it a custom class called StaticDetailViewController, which I created as a subclass of UITableViewController.

However, when I go to drag from the view to the .h file in the Assistant view, no connection option appears. Why is this?

Jonathan Hall
  • 75,165
  • 16
  • 143
  • 189
Doug Smith
  • 29,668
  • 57
  • 204
  • 388
  • 1
    Maybe you have the assistant specified to the wrong file. Press the 'x' button, close assistant and then reopen it and it should open to the right file – MCKapur Dec 12 '12 at 01:01

1 Answers1

2

You have to open and close your curly braces for your @interface in the .h file. For some reason it won't let you control drag using the assistant editor unless you do so... (screenshot)

enter image description here

jhilgert00
  • 5,479
  • 2
  • 38
  • 54