Runtime error on Did End On Exit in iPhone application
        Posted  
        
            by 
                Deepak Pillai
            
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Deepak Pillai
        
        
        
        Published on 2012-09-18T08:59:45Z
        Indexed on 
            2012/09/18
            9:37 UTC
        
        
        Read the original article
        Hit count: 221
        
Does anyone know why im getting runtime error when i click on return button on iphone keyboard. I need to hide keyboard after done editing values to UITextField. So i assigned Did End On Exit to IBAction and the IBAction code below
-(IBAction)FinishEditing:(id)sender
{
    [folderName resignFirstResponder];
}   
When running ma project i facing a runtime error and the variable values shown below
argv char ** 0xbffff58c
*argv char * 0xbffff6b8
**argv char '/'
Console Value
(lldb) 
Any idea to overcome this issue??
© Stack Overflow or respective owner