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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T11:28:39+00:00 2026-05-22T11:28:39+00:00

I could not able to get the value for the key. I have a

  • 0

I could not able to get the value for the key.

I have a structure pt(which is the value) and a wTiId,wTiId1(which is the key).

I am sure that something wrong i’m doing in the below code but i could not figure out what
it is.

Timers.h
---------
#import <Foundation/Foundation.h>

struct session {
    int a;
    char c;
}pstruct;

@interface Timers : NSObject {
    unsigned short wTiId;
    unsigned short wTiId1;

}
-(void)timer;
@end


Timers.m
--------

#import "Timers.h"

@implementation Timers
-(id)init
{
    if (self=[super init]) {
    wTiId=71;
    wTiId1=72;
    }
    return self;
}

-(void)dealloc
{
    [super dealloc];
}

-(void)timer
{
struct session* pt = &pstruct;

pt->a=12;
pt->c='L';


CFDictionaryValueCallBacks cbvs = {0,NULL,NULL,NULL,NULL};
CFMutableDictionaryRef cfmdict = CFDictionaryCreateMutable(NULL,0,&kCFTypeDictionaryKeyCallBacks,&cbvs);

NSLog(@"Dict size:%d\n",((CFIndex)CFDictionaryGetCount(cfmdict)));

CFNumberRef tiId = CFNumberCreate(NULL,kCFNumberShortType,&wTiId);
CFNumberRef tiId1 = CFNumberCreate(NULL,kCFNumberShortType,&wTiId1);

CFDictionarySetValue(cfmdict,tiId,pt);
NSLog(@"Dict size:%d\n",((CFIndex)CFDictionaryGetCount(cfmdict)));

CFDictionarySetValue(cfmdict,tiId1,pt);
NSLog(@"Dict size:%d\n",((CFIndex)CFDictionaryGetCount(cfmdict)));

NSLog(@"The value is:%s",(CFDictionaryGetValue(cfmdict,tiId)));

CFRelease(tiId);
CFRelease(tiId1);
}
@end

main.m
------
#import <Foundation/Foundation.h>
#import "Timers.h"
int main (int argc, const char * argv[]) {
    NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
    Timers* time = [[Timers alloc]init];
    [time timer];
    [pool drain];
    return 0;
}

output
------

2011-05-15 14:52:54.857 timer[3511:a0f] Dict size:0
2011-05-15 14:52:54.861 timer[3511:a0f] Dict size:1
2011-05-15 14:52:54.861 timer[3511:a0f] Dict size:2
2011-05-15 14:52:54.862 timer[3511:a0f] The value is:

I tried with the format specifier “%@” also.Nothing gets printed when CFDictionaryGetValue
() function is called.The return type of this function is const void*.

  • 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-05-22T11:28:39+00:00Added an answer on May 22, 2026 at 11:28 am

    The result of CFDictionaryGetValue is what you put in the dictionary.

    You have to cast the result of CFDictionaryGetValue to the right pointer type to access the structure members:

    struct session *value = (struct session *) CFDictionaryGetValue(cfmdict,tiId);
    NSLog(@"The value is %d and %c", value->a, value->c);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Just could not get this one and googling did not help much either.. First
I could not find the function that returns the name of the cell referenced.
Here is some code I could not get to format properly in markdown, this
I have a problem that I haven't been able to find a solution to,
I am trying to write my own MySQL storage engine which uses a key-value
I have seen other thread with similar issue but was not able to work
I have a listview that serves as a user-settings table. Each key is the
I could not find any pointers on how to create a menubar icon on
I could not find a clear answer to this question elsewhere, so I'll try
I'm sorry I could not think of a better title. The problem is the

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.