Core Foundation provides the fundamental data types and essential services that underlie both the Cocoa and Carbon environments on Mac OS X.
0
votes
0answers
18 views
Can I close a CFStream even if its not open?
I'm specifically thinking of the case where the stream is opening. The documentation on CFRead/WriteStreamClose is pretty sparse so I assume its ok. Does anyone have practical experience with this ...
1
vote
1answer
40 views
Anyone use CFAllocatorSetDefault succesfully in an iPhone app?
I wish to replace the default CFAllocator in my iPhone app with my own implementation. I want to control the memory allocated by the UIWebView since it seems to hold on to so much memory after loading ...
0
votes
0answers
9 views
Call to CFURLCreateFromFileSystemRepresentation sometimes fails
I have an application that loads in a bundle and in doing so I call CFURLCreateFromFileSystemRepresentation before CFBundleCreate: -
bundlePackageURL = CFURLCreateFromFileSystemRepresentation(
...
0
votes
1answer
34 views
How to programmatically retrieve UUID of root disk partition in OS X?
I can retrieve an OS X disk partition UUID by this code:
void PrintUUID()
{
DADiskRef disk;
CFDictionaryRef descDict;
DASessionRef session = DASessionCreate(NULL);
if (session) {
...
0
votes
1answer
25 views
Is there possible to use FSEventStreamCreate without NSString
My project is not arc or cocoa, so I don't want use NSString in my code, but it seems not work.
The Xcode shows "ERROR: (CFStringGetTypeID() != CFGetTypeID(cfStringRef)) (i = 0)".
How should I ...
1
vote
1answer
21 views
How to create a bundle programmatically in Cocoa?
I tried to create a bundle like
CFBundleRef bundleRef = CFBundleCreate(kCFAllocatorDefault, (CFURLRef)@"/Users/MyUser/source/Mybundle.component");
but got SIGABRT
and
NSBundle* myBundle = ...
2
votes
1answer
33 views
Why is CFSetGetValues clobbering the NSSet passed to it?
I am trying to use CFSetGetValues() on an NSSet instance, but it seems to be clobbering the set's memory. Using a watchpoint, the set instance is being written to from objc_assign_strongCast_non_gc(). ...
1
vote
0answers
34 views
How to programmatically get the “last opened” date like displayed in Finder
I want to display the "Last opened" date in my App just like in the Finder preview or info panel. However I realized that this is NOT the same as the last access date that I would get with
NSDate* ...
0
votes
1answer
45 views
__bridge_transfer and performSelector:withObject:
I have a CFDictionaryRef that doesn't retain/release its objects. When I add an item in it, I take care of retaining it, and later :
NSMutableArray *array = (__bridge_transfer NSMutableArray ...
0
votes
1answer
26 views
CF memory allocation example
Reading Apple doc on CF memory management, I see an example:
static CFStringRef title = NULL;
void SetTitle(CFStringRef newTitle) {
CFStringRef temp = title;
title = ...
0
votes
0answers
7 views
NSOpenPanel alternative for c++
I am trying to locate an alternative to NSOpenPanel that I can use from a purely c++ class methods. I know that windows provides a lot of options for this, but I need this for a mac system. I have ...
0
votes
1answer
111 views
How does CFBridgingRelease act on objects retained in a Core Foundation container?
I'm creating a CFMutableArray and populating it dynamically with CFStrings.
If I'm bridging this CFMutableArray over as a NSMutableArray using CFBridgingRelease, what happens to its children?
When ...
2
votes
1answer
42 views
Does Apple allow to monitor springboard events?
I am trying to detect when a user locks the device (vs. pressing home button for instance).
Found this:
CFNotificationCenterAddObserver(CFNotificationCenterGetDarwinNotifyCenter(), //center
...
0
votes
1answer
23 views
Corefoundation CFArray ownership
I found a strange problem while using Core Foundation Array! Here is the code snippet
fname = CFStringCreateWithFormat(kCFAllocatorDefault, NULL, CFSTR("%s%s"), path, ep->d_name);
...
1
vote
0answers
69 views
Invalid token at start of a preprocessor expression in CoreFoundation
I'm having the following issue for the last 2 days. Whenever I try to build 1 specific app, I keep getting errors in some of the CoreFoundation classes. To be specific in the classes where one of the ...
1
vote
1answer
66 views
ARC: Analyzer warnings with Objective-C code using core foundation
Using the analyzer on some Objective-C | Cocoa / Core Foundation code, I got a few error that I can't fix because I don't understand them.
Error #1:
In an Objective-C class header, I declare this ...
0
votes
1answer
35 views
Crash when CFRelease(CFArrayRef)
I have method which is clear the adress book in the device.
the method is below.
-(void) clearAdressBook
{
ABAddressBookRef addrBook=ABAddressBookCreate();
CFArrayRef groups = ...
3
votes
1answer
57 views
Why is my CFRunLoopTimer not firing?
I have a CFRunLoopTimer created within a C++ class as shown below:
#import <CoreFoundation/CoreFoundation.h>
void cClass::StartTimer()
{
if(!mActiveSenseTimer)
{
CFTimeInterval ...
0
votes
1answer
59 views
Calling CFRunLoop family on a Cocoa application
I have a cocoa application in which I would like to use UNIX domain sockets to communicate with a system-wide daemon.
In a first step, my client will connect to the daemon and then listen for ...
1
vote
1answer
40 views
Do I need to release CFError?
In Core Foundation, when I call a function with a CFError pointer, am I responsible to release that error afterwards? For example:
CFErrorRef error = NULL;
BOOL success = ABRecordSetValue(record, ...
0
votes
1answer
55 views
Is CFUUIDCreate evenly distributed across all it's bits?
I'm interested if anyone knows if the returned ID from CFUUIDCreate... is evenly distributed across all its bits. More specific: if you truncate some bits from it, will it still be evenly distributed ...
2
votes
2answers
165 views
NSMutableDictionary - EXC BAD ACCESS - simultaneous read/write
I was hoping for some help with my app.
I have a set up where multiple threads access a shared NSMutableDictionary owned by a singleton class. The threads access the dictionary in response to ...
2
votes
1answer
48 views
How to CFRelease a CGEventRef that must be returned?
I'm intercepting CGEventRefs in two ways:
Returning value NULL to kill the event
Assigning the event a new CGEventRef via CGEventCreateKeyboardEvent()
Xcode's Analyzer tells me I have a potential ...
0
votes
0answers
27 views
Copy files using CFStream
Does anyone have a link to sample code to using Core Foundations's infra to copy file from one location to another. It will be useful if it can be async. Even a sync example will suffice. I have my ...
1
vote
1answer
46 views
CFUserNotificationDisplayAlert CFOptionFlags Not working?
I have a CFUserNotificationDisplayAlert setup like this:
CFOptionFlags cfRes;
CFUserNotificationDisplayAlert(5, kCFUserNotificationNoteAlertLevel,
...
0
votes
1answer
91 views
potential leak of an object stored into address book
I got issue potential leak of an object stored into address book , how to resolve it.
I create addressbook locally and then copyArrayofAllpeople to people1 array .people1 array use in outside of ...
0
votes
1answer
132 views
assign properties, ARC and Core Foundation objects
Edit 2.
Thanks to Ken this is now working. And I even think I understand why :-)
Here's the amended line:
- (void) reCreatePath {
CGMutablePathRef p = ::CGPathCreateMutable() ;
...
0
votes
1answer
50 views
CFURL does not give full data when download
Iam trying to use CFHTTP to write a small downloader. Unfortunately I cannot use NSURL which is very easy. I basically want an async way to download the data and store it in a file. I have not yet ...
0
votes
1answer
29 views
Creating a TGA using CGImageDestinationCreateWithData
I'm trying to save a TGA image. I've got the data as a CGImageRef and used CFDataCreateMutable to get the CFMutableDataRef, but I'm not sure what type argument with which to call ...
0
votes
0answers
74 views
Multiple clipping paths in core text
I am using following code to create a single clipping path in core text for added image. Now the problem is if I want to add more than one images, how should I create clipping paths array so that it ...
0
votes
0answers
35 views
Data transferring between core foundation applications
Hey there apple people :)
I'd like to have your educated advise as to what would be the better, or more suitable way to transfer a small amount of data between my system context daemon to my user ...
0
votes
1answer
57 views
CFString characters (code points) count
I'd like to know, is there any way to get number of characters (in terms of Unicode code points) that are stored in CFString object in CoreFoundation framework?
There is available function: ...
1
vote
1answer
2k views
libMobileGestalt copySystemVersionDictionaryValue: Could not lookup ReleaseType from system version dictionary
I have been testing prior to submission of an update... from iOS4, and have run into the following... 1) creating PDFs from my app. 2) appears to be inconsistent, as I can create new PDFs without ...
0
votes
3answers
59 views
Toll-Bridge overrelease
I recently migrated a huge library to ARC, and a tool-free section is giving a headache. Here is the code:
+ (NSString *)getKeychainItem:(NSString *)identifier
{
NSString *fullIdentifier = ...
0
votes
0answers
74 views
Mountain Lion is Missing Framework Includes
I've Recentley installed Mac OS X Mountain Lion (Clean Install, not Update), and i installed gcc from Here: http://hpc.sourceforge.net/
i tried to Compile applications using gcc, but the Header files ...
0
votes
0answers
71 views
storing struct as value using CFDictionarySetValue()
Iam new to using Core Foundations. I want to use dictionary to store some key value pair. The value must be a pointer to a struct. This pointer is pointing to dynamically allocated buffer.
...
0
votes
2answers
121 views
remove last chars from NSString
I have a NSString and for the life of me I cannot figure out how to remove spaces and then take the last 30 characters of it.
Errors like:
3/5/13 3:38:30 PM *** Terminating app due to uncaught ...
0
votes
1answer
55 views
CFPreferences Background Sync Queue Crashed
I have integrated crashlytics to track the crashes in my ios application. The application got crashed and the stack trace does not point in the application and this crash is inconsistent, could not ...
0
votes
0answers
21 views
Trouble with CFBinaryHeapGetMinimumIfPresent and objects under ARC
The following code causes a message to be sent to a deallocated instance:
CFBinaryHeapRef heap = CFBinaryHeapCreate(NULL, 0, &kCFStringBinaryHeapCallBacks, NULL);
{
id foo = [[NSObject alloc] ...
1
vote
3answers
154 views
NSMutableDictionary that retains its keys
I'm trying to figure out how to create an NSMutableDictionary that retains instead of copies its keys. I have implemented -(NSUInteger)hash and -(id)isEqual: for my desired keys, I am just having ...
0
votes
0answers
48 views
CoreFoundation SecTransform to decrypt string?
Can someone explain how to use SecTransform methods to get decrypted string (as NSString or CFString, using public RSA key) which was previously encrypted by private RSA key?
I've read documentation ...
1
vote
2answers
65 views
CFReadStreamRef always nil
I'm trying to read public.pem file where public key is stored, but CFReadStreamRef always return nil. publicKeyPath and url are not nil (as I can see at debugger) and I don't have other threads ...
1
vote
0answers
38 views
Finding transition date/times from standard to daylight savings and vice-versa in CoreFoundation
I'm trying to replicate the functionality of the Windows function GetTimeZoneInformation, which populates a TIME_ZONE_INFORMATION structure, using CoreFoundation. I've made a function that turns a ...
1
vote
1answer
108 views
Getting UTC offset of system time zone on Mac (C++)
I'm trying to get the system time zone expressed as an offset from UTC in minutes - something like the Windows function GetTimeZoneInformation(LPTIME_ZONE_INFORMATION). Is there something in ...
0
votes
1answer
94 views
CFString memory leak
I have narrowed down a memory leak to the following code
CFStringRef CFDataToString(CFDataRef data)
{
UInt8* buf = malloc(CFDataGetLength(data));
CFDataGetBytes(data, CFRangeMake(0, ...
5
votes
1answer
120 views
Proper memory management with CFStringRef and CFRelease
Consider this simple method; it's a category on NSString.
- (NSString *)stringByUrlEncoding
{
CFStringRef newString = CFURLCreateStringByAddingPercentEscapes(NULL, (CFStringRef)self, NULL, ...
1
vote
0answers
88 views
How unique are local asset URLS in iOS
We are using local asset URLs to identify images coming from Camera Roll of an iPhone.
These are ALAssetPropertyURLs described here: ...
0
votes
0answers
88 views
CFRunLoopRunInMode return on particular event
I am using CFRunLoopRunInMode(kCFRunLoopDefaultMode, QTKIT_READER_CAMERA_INITIALIZATION_TIMEOUT, true) and i need to make this RunLoop return after particular event occurs. Is there any way to make ...
2
votes
0answers
176 views
Getting the BSD name of a USB device using IOKit to write to the device?
I am trying to determine the BSD name of virtual serial port using IOKit under MacOS.
I have a USB CDC device that looks like a virtual serial port, and I want to get the BSD device path so that I ...
1
vote
2answers
199 views
objc_msgSend() with C callback function as argument for code block?
So I'm trying to call an Objective-C method which has a callback code block as an argument.
The Objective-C method (implementation cut for purpose of post)
- ...

