Failed to connect textfield & button error message

Working on the first project and do not see any output to the text field when I click the generate password button. During load I see this error message in the console.

2015-10-22 13:25:27.412 RandomPassword2[2156:133192] Failed to connect (textField) outlet from (NSApplication) to (NSTextField): missing setter or instance variable
2015-10-22 13:25:27.413 RandomPassword2[2156:133192] Failed to connect (window) outlet from (NSApplication) to (NSWindow): missing setter or instance variable
2015-10-22 13:25:27.413 RandomPassword2[2156:133192] Could not connect action, target class NSApplication does not respond to -generatePassword:

Interesting thing here… I added a “quit” button and linked it to the “terminate” under first responder. That link works. Rest does not.

I also noticed that the window references in the outlets reference does not match the book. In the book I see “Password Generator” referenced and in my code I only see “window”.

Thanks in advance

Problem solved… was deleting the whole main menu xib file and not just the window contained within that file.

Thanks