I get this error when running my application on Xcode 5 beta 5. New programming features and some recommendations. Any help is appreciated.
(lldb) bt
* thread
frame
frame
frame
frame
frame
frame
frame
frame
frame
frame
frame
frame
frame
* frame
(lldb)
Here is the error I get with a breakpoint.
if ([[[segue identifier] isEqualToString: @ "ShowDetails"]) {DetailViewController * detailviewcontroller = [segue destinationViewController];
NSIndexPath *myIndexPath = [self.tableView indexPathForSelectedRow];
int row = [myIndexPath row];
detailviewcontroller.DetailModal = @[_Title[row], _Description[row]]; <-- its on this line of code right here.
says an unrecognized selector sent to instance 0x17e6a180 Any help?
source
share