• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
Is this correct behavior?
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Is this correct behavior?


  • Subject: Is this correct behavior?
  • From: Rune Lindman <email@hidden>
  • Date: Thu, 30 Jun 2005 10:10:06 +0200

Moving from GCC 4 to 3.3 is a much larger step for me than moving from CW to Xcode. I encountered several small issues with code that used to work but suddenly stopped. Most where easy to get around by rearranging the code.

Now I'm totally stuck on a problem. I have code that used to work fine but stopped to work either when I moved from GCC 4 to 3.3 or I changed some settings in Xcode. Have I been getting away with something illegal before or is there a problem/setting I missed?

This does not work (key is not found in dictionary):
-------------
#define kMyKey CFSTR("myKey")

CFMutableDictionaryRef dictRef = ::CFDictionaryCreateMutable(nil, 0,nil,nil);
CFDictionarySetValue(dictRef,kMyKey,CFSTR("myValue"));
CFStringRef returnedValue = CFDictionaryGetValue(dictRef,kMyKey);
CFShow(returnedValue); // null


This works:
-------------
#define kMyKey CFSTR("myKey")

CFStringRef key = kMyKey;
CFMutableDictionaryRef dictRef = ::CFDictionaryCreateMutable(nil, 0,nil,nil);
CFDictionarySetValue(dictRef,key,CFSTR("myValue"));
CFStringRef returnedValue = CFDictionaryGetValue(dictRef,key);
CFShow(returnedValue); // "myKey"


Grateful for any hints!

Rune
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Xcode-users mailing list      (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden


  • Follow-Ups:
    • Re: Is this correct behavior?
      • From: Jim Correia <email@hidden>
    • Re: Is this correct behavior?
      • From: Rune Lindman <email@hidden>
  • Prev by Date: Xcode 2.1 can't (manually) save files
  • Next by Date: Re: Xcode 2.1 can't (manually) save files
  • Previous by thread: re: Xcode 2.1 can't (manually) save files
  • Next by thread: Re: Is this correct behavior?
  • Index(es):
    • Date
    • Thread