Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8138251
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T11:25:59+00:00 2026-06-06T11:25:59+00:00

When sending data from one iOS device to another, I receive these errors. 2012-06-21

  • 0

When sending data from one iOS device to another, I receive these errors.

2012-06-21 10:22:15.509 BulletTime[2324:707] -[DataHandler selectorToCall:]: unrecognized selector sent to instance 0x19bfc0
2012-06-21 10:22:15.511 BulletTime[2324:707] * Terminating app due to uncaught exception ‘NSInvalidArgumentException’, reason: ‘-[DataHandler selectorToCall:]: unrecognized selector sent to instance 0x19bfc0’
*
First throw call stack:
(0x356c188f 0x37a68259 0x356c4a9b 0x356c3915 0x3561e650 0x356207d3 0xb6fd1 0xb7121 0x3322f61b 0x3561b3fd 0x33110e07 0x33110dc3 0x33110da1 0x33110b11 0x33111449 0x3310f92b 0x3310f319 0x330f5695 0x330f4f3b 0x372b422b 0x35695523 0x356954c5 0x35694313 0x356174a5 0x3561736d 0x372b3439 0x33123cd5 0xb231f 0xb22c4)
terminate called throwing an exception(lldb)

I know for sure that this code is causing the crash, but I don’t know how to fix it:

- (void)sendInfo {
    //Attempting to send info to the other device.
    //Returns to the Data Handler.
    info = (BOOL*)YES;

    //Sets the requestLabel and requestData of the CameraRequestDataProvider object.
    //These are then handled in the DataHandler...
    requestLabel = @"Cam";
    requestData = [@"Cam" dataUsingEncoding:NSUTF8StringEncoding];

    //Crash occurs here...

    if (delegateToCall && [delegateToCall respondsToSelector:selectorToCall])

        [delegateToCall performSelector:@selector(selectorToCall:)];
}

I have been attempting to figure this out for the past few days with no luck. Any ideas? I would greatly appreciate it!

Got it! Thank you, I fixed that error.

However, now I’m getting this error:

2012-06-21 10:47:16.779 BulletTime[2416:707] ButtonIndex 0, info should be sent here.
2012-06-21 10:47:19.913 BulletTime[2416:707] BTM: attempting to connect to service 0x00000800 on device “Grace’s iPad” A4:67:06:F3:EC:2A
2012-06-21 10:47:20.929 BulletTime[2416:707] BTM: connection to service 0x00000800 on device “Grace’s iPad” A4:67:06:F3:EC:2A succeeded
2012-06-21 10:47:22.029 BulletTime[2416:707] -[DataHandler selectorToPerformWhenConnectionWasStablished:]: unrecognized selector sent to instance 0x1303f0
2012-06-21 10:47:22.032 BulletTime[2416:707] * Terminating app due to uncaught exception ‘NSInvalidArgumentException’, reason: ‘-[DataHandler selectorToPerformWhenConnectionWasStablished:]: unrecognized selector sent to instance 0x1303f0’
*
First throw call stack:
(0x356c188f 0x37a68259 0x356c4a9b 0x356c3915 0x3561e650 0x356207d3 0x6c693 0x351cf4ff 0x3568d547 0x35619097 0x351433eb 0x6ce1f 0x3069612f 0x356201fb 0x351e4747 0x35695ad3 0x3569529f 0x35694045 0x356174a5 0x3561736d 0x372b3439 0x33123cd5 0x6b2df 0x6b284)
terminate called throwing an exception

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-06T11:26:01+00:00Added an answer on June 6, 2026 at 11:26 am
    if (delegateToCall && [delegateToCall respondsToSelector:selectorToCall])
    
        [delegateToCall performSelector:selectorToCall];
    

    and same mistake in method

    - (void)cancelInfo:(id)sender {
        [mainViewController dismissModalViewControllerAnimated:NO];
        [delegateToCall performSelector:@selector(selectorToCall:)];    
    }
    

    need replace to

    - (void)cancelInfo:(id)sender {
        [mainViewController dismissModalViewControllerAnimated:NO];
        [delegateToCall performSelector:selectorToCall];    
    }
    

    UPDATE:

    in file Device.m same error in method:

    - (void)triggerConnectionSuccessfull:(NSNotification *)notification
    

    replace string

    [delegateToCallAboutConnection performSelector:@selector(selectorToPerformWhenConnectionWasStablished:)];
    

    to string

    [delegateToCallAboutConnection performSelector:selectorToPerformWhenConnectionWasStablished];
    

    and method

    - (void)triggerConnectionFailed:(NSNotification *)notification
    

    also have same error

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am sending data from one device to another (Samsung Tab and Sony Xperia).
I'd interested in sending data from one WP7 to another WP7 phone so I
Im sending data from one class to another, Its working but I have a
I'm sending data from one page to the next in an MVC2 app. Page
I am trying to receive a json object back from php after sending data
I'm sending a very large string from one application to another on localhost using
I'm creating a socket program to transfer data from one pc to another, but
I am going to post some data from one website to another website. I
I have a MySQL query that is copying data from one table to another
I am trying to transfer data from one page to another but some problem

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.