I keep getting Could not connect the action startServer: to target of class NSApplication error on compile. I understand what the error is but not sure how to fix it. Somehow my xib is trying to invoke startServer method in NSApplication which doesn't exist.
|
|
|||
|
|
|
It sounds as if you connected your UI element to the File's Owner object, which is an instance of NSApplication. If you haven't done so already, you want to drag a NSObject out of the Object Library palette in Xcode 4 to the margin to the left of your layout. Once you've done that, and have selected it, choose the identity inspector and, in the Class field, enter "WindowController". Now that you've got a representation of your WindowController, which as you said contains startServer:, then you can connect your UI element to that. Be sure your startServer method is of the form:
or you won't be able to make the connection. Good luck to you in your endeavors. |
|||
|
|
|
You've made a connection to the file's owner in your main nib, that you probably meant to connect to something else. What class have you implemented |
|||
|
|
|
I was having the same issue but finally got it resolved. I am not sure if this will work for you but try this: (On Interface Builder)
See if it works for you! It had mine working now! Good luck! |
|||
|
|
|
Simply you can fix this by two easy ways:
either 1 or 2 will fix this problem. Happy Coding.... |
||||
|
|