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 8517775
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T05:47:57+00:00 2026-06-11T05:47:57+00:00

I am having a problem in type conversion in ARC environment.If anyone would be

  • 0

I am having a problem in type conversion in ARC environment.If anyone would be kind enough to address it as well:

When i used this line of code:

NSData *resultData = nil;

NSMutableDictionary *passwordQuery = [query mutableCopy];

[passwordQuery setObject: (id) kCFBooleanTrue forKey: (__bridge  id) kSecReturnData];

status = SecItemCopyMatching((__bridge  CFDictionaryRef) passwordQuery, (CFTypeRef *) &resultData);

Then i am recieving an error:

Cast of an indirect pointer to an Objective C pointer to 'CFTypeRef*'(aka 'const void **')is disallowed with ARC.

Please suggest me any way to ressolve this..

Thanks in advance..

  • 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-11T05:47:58+00:00Added an answer on June 11, 2026 at 5:47 am

    The result data type is merely a CFTypeRef until after the call to SecItemCopyMatching so start by passing in a CFTypeRef:

    CFTypeRef resultData = nil;
    status = SecItemCopyMatching((__bridge CFDictionaryRef) passwordQuery,  &resultData);
    

    Since the query specified that the resultData should be a CFDataRef the resultData is now a CFDataRef, and you can now cast it as such. then cast it further into an NSData.

    CFDataRef resultCFData = (CFDataRef)resultData;
    NSData *resultNSData = (__bridge NSData *)resultCFData;
    

    Or in one line:

    NSData *resultNSData = (__bridge NSData *)(CFDataRef)resultData;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i am having a problem in type conversion in ARC environment.if anyone would be
I'm having a problem getting this type conversion working correctly. My guess is the
I'm having following problem. I should convert a control to a certain type, this
Im having a problem with python.. I have a binary tree node type: class
Having a persistent problem with Jquery in firebug...frequently I'll type some JQuery statement into
Im having problem in my UIscrollView ,this is what I have done: Whenever a
I am having problem to get a numerical value for this expression where I
I'm having a small problem trying to malloc this struct. Here is the code
This solution is for an unbounded Gridview paging and having problem with the syntax
I'm having a problem with the conversion of a JSON to a JNI overlay

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.