I have been spending the past two days trying to figure out this issue, so any information or thoughts on why this is happening is appreciated.
So my problem is, when I add a button to my view controller in the interface builder and create the normal ibaction code the button performs as it should, I then drag and drop from the button to a view controller to create a segue, this works fine as well.
The issue comes in when I run the app, the app will run fine until I push the button(note: I still have the basic skeleton for the button inaction but I do not have it running any code, it is completely blank) that goes to the segue, when I push the button it stops the app and gives this error message
2013-09-12 08:43:17.696 MessAround[51565:c07] -[UIButton text]: unrecognized selector sent to instance 0xa1cb6c0
2013-09-12 08:43:17.699 MessAround[51565:c07] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[UIButton text]: unrecognized selector sent to instance 0xa1cb6c0'
*** First throw call stack:
(0x1d09012 0x11ede7e 0x1d944bd 0x1cf8bbc 0x1cf894e 0x3ac0 0x57cac7 0x57cb54 0x1201705 0x138920 0x1388b8 0x1f9671 0x1f9bcf 0x1f8d38 0x16833f 0x168552 0x1463aa 0x137cf8 0x1f42df9 0x1f42ad0 0x1c7ebf5 0x1c7e962 0x1cafbb6 0x1caef44 0x1caee1b 0x1f417e3 0x1f41668 0x13565c 0x22bd 0x21e5)
libc++abi.dylib: terminate called throwing an exception
Doesn't matter how many buttons I add to this view they give this error, I can however add a button to any of my other views and make a segue to this view and it works perfectly.
Thanks in advance for any thoughts