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

  • Home
  • SEARCH
  • 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 9230503
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T05:50:29+00:00 2026-06-18T05:50:29+00:00

Two questions: Is it possible to send objective-c message to C void * from

  • 0

Two questions:

  1. Is it possible to send objective-c message to C void * from C function?
  2. Is it possible to hint void * with <SomeProtocol> in C-function declaration? In function body?

(pseudocode)

// myfunc.h
void myfunc(void *object, int param);

// myfunc.c
void myfunc(void *object, int param) {
    // desired (pseudocode):
    // [<SomeProtocol>(id)object method:param];
}

// objective-c controller
# include "myfunc.h"
// ....
@implementation

- (void)visible_to_outer_world {
    Object *o = [Object new];
    myfunc(o, 5);
}

// ....
@end
  • 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-18T05:50:31+00:00Added an answer on June 18, 2026 at 5:50 am

    Is it possible to send an Objective-C message to a void * from a C function?

    Not sure why you would want it, but if you’re compiling as Objective-C:

    void bar(void *ptr)
    {
        // MRC version:
        [(id)ptr someMessage];
    
        // ARC (alias "ugly") version:
        [(__bridge id)ptr someMessage];
    }
    
    Foo *foo = [[Foo alloc] init];
    bar(foo);
    

    Is it possible to hint void * with <SomeProtocol> in a C function declaration? In a function body?

    No.

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

Sidebar

Related Questions

I have two questions. I know it is possible to declare class objects in
I have found possible slowdown in my app so I would have two questions:
two little questions regarding the UISearchBar/SearchDisplayController: Is it possible to prevent/hide the overlay which
I have two different servers, and I need to send post data from one
This is a two part question. Is it possible to take advantage of xVal
My question has two parts: Is it possible that, if a segfault occurs after
Possible stupid question: let's say I have two apps contained within one project. Can
my question is about two possible ways to access data: (My question is about
Possible Duplicate: Two css files defining same class The answers to this question and
Two questions only: I have a website including a section of Blog in wordpress.

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.