Using Xcode 4.3.2 and MacRuby .10, I start up a new MacRuby project and create a file called SetupWindowController.rb, which houses this code:
class SetupWindowController < NSWindowController
attr_accessor :window, :submit, :path_to_root
def set_root_path(sender)
end
end
In the .xib file, I drag an Object onto the bar with App Delegate, File's Owner, and the Windows, but when I try to set it's class to SetupWindowController... nothing.
What could be causing this?