Tagged Questions
1
vote
0answers
25 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 ...
0
votes
1answer
25 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
44 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 ...
1
vote
1answer
28 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, ...
2
votes
2answers
142 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 ...
1
vote
1answer
30 views
CFUserNotificationDisplayAlert CFOptionFlags Not working?
I have a CFUserNotificationDisplayAlert setup like this:
CFOptionFlags cfRes;
CFUserNotificationDisplayAlert(5, kCFUserNotificationNoteAlertLevel,
...
0
votes
0answers
49 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
3answers
51 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
1answer
45 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 ...
1
vote
3answers
135 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 ...
1
vote
0answers
65 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: ...
1
vote
1answer
173 views
ID for objects of CGColorRef opaque type
I hope to understand internals of CoreFoundation objects with this research.
Below given the structure of CGColor from free quartz project.
typedef struct CGColor {
CFRuntimeBase obj;
...
0
votes
1answer
64 views
CFArray created with CFCreateArray crashes when accessed
unsigned char _MyString[] = {0xda, 0xe5, 0x18, ..., 0x00};
CFArrayRef array = CFArrayCreate(NULL,
(const void**) CFStringCreateWithBytes(NULL,
...
2
votes
1answer
121 views
AddressBook - Crash in iOS app, ARC enabled, near CF objects manipulation
I have a crash, very likely related to memory management that I can not spot.
Crash never happened on me, I only know it's occurring because of crash reports I have received.
This also means the ...
4
votes
1answer
200 views
Is it safe to schedule and invalidate NSTimers on a GCD serial queue?
What's the right way to do this? The NSTimer documentation says this:
Special Considerations
You must send this message from the thread on
which the timer was installed. If you send this ...
1
vote
1answer
30 views
peoplePickerNavigationController leaks
I'm trying to get name and last name from Contacts and store the values in a couple of NSString:
CFStringRef cfName = ABRecordCopyValue(person, kABPersonFirstNameProperty);
self.stName = (NSString ...
3
votes
3answers
131 views
Spin activity indicator after delay during lengthy operations
I am developing an iOS app with a UITableView which at some stage adds or removes a bunch of its rows. Since there are a large number of rows, this operation can take long. However, I cannot easily ...
0
votes
0answers
28 views
Bug with kCFStringEncodingUTF7_IMAP in iOS 4.3 and lower
I have some strange bug with encodings. When I am trying to convert c string in kCFStringEncodingUTF7_IMAP to NSString using following code
NSString *path = (NSString ...
3
votes
2answers
120 views
What happens to an ARC object that is CFBridgeRetained but only CFReleased?
Assuming there are still outstanding strong references, does this result in a leak because nobody (neither ARC nor I) is managing the object anymore?
CFTypeRef cf_object = ...
0
votes
1answer
82 views
How to name and handle memory management on a function that returns a CFType
I have a project running on ARC (DTCoreText) and I want to implement a category method on UIFont that returns a matching CTFontRef. This is what I have so far:
@implementation UIFont (DTCoreText)
+ ...
0
votes
1answer
107 views
CGDataProvider works the first time, returns an empty image the second time
I am trying to read the ARGB pixel data from a png image asset in my ios App.
I am using CGDataProvider to get a CFDataRef as described here:
...
1
vote
2answers
209 views
CGImageRef cg = [[UIImage imageNamed: Path] CGImage]; Requires a CGImageRelease(cg)'?
I am trying to read the ARGB pixels from a an image asset in iOS. For that, I need a CGImageRef I can use to get its CGDataProvider. My question is, if I create a CGImageRef using:
CGImageRef cg = ...
0
votes
1answer
486 views
Unable to obtain ABAddressBook on iOS 6 (no privacy prompt returns empty database)
I'm having trouble accessing users address books on iOS 6 on certain devices. Oddly it works when I test on my own device.
The app never prompts the user to access the address book and my app is not ...
0
votes
1answer
234 views
Memory Leak in iOS with CGContextRef
I have a set of code that takes an image stored in a UIImageView and modify's its contents to copy into a new image for a different UIImageView. The problem is that this code always receives a memory ...
0
votes
0answers
52 views
Is there a list or table of the localizedDescription strings for kCFURLError or NSURLError?
I can see all the error codes in CFNetworkError.h or CFURLError.h, but would also like to see how the various -localizedDescription strings look like at least in English, but possibly other languages ...
0
votes
1answer
44 views
Please help to adapt this sample code
I would like to adapt the sample code below to store a uint value rather than a CGPoint value in myValues dictionary. I'm not really familiar how to work with CoreFoundation types, so need help here ...
5
votes
2answers
546 views
What's the equivalent of NSHomeDirectory() in CoreFoundation?
I have a C library I'm modifying, as little as possible, to add a feature and get that to run properly on iOS. It is working fine on iOS 5.1, but breaking on iOS 6 because it's required to write a ...
1
vote
0answers
59 views
Need CFHash function used in ios5
Due to some poorly written code, I was saving some data to disk indexed by calling [NSURL hash] on some core data URIRepresentations.
IOS6 changed how that hash function is computed, and I'd like to ...
0
votes
1answer
258 views
“CoreFoundation.h: Not found” when building for iOS device, but OK for Simulator
When building for "Device", I get the following error:
CoreFoundation/CoreFoundation.h: No such file or directory
It is building fine for the Simulator.
I searched but didn't get working solution
...
0
votes
1answer
157 views
what is the CFNotificationCenter callback function observer?
I'm new to the CFNotificationCenter. I was reading the documentation at developer.apple and it says that in the CallbackFunction that observer is "an arbitrary value other than NULL that identifies ...
1
vote
1answer
199 views
CoreText is not loading custom fonts
I have two custom .ttf and .otf fonts. I am trying to load them in CoreText using this line of code:
CTFontRef fontRef = CTFontCreateWithName(CFSTR("Ronnia"), self.fontSize, NULL);
Frustratingly ...
3
votes
2answers
215 views
Check function availability in Core Foundation
I want to use a Core Foundation method that is only available on the latest iOS SDK, and fallback to a different one for previous SDKs. Is there something similar to Cocoa's way of doing it for ...
0
votes
1answer
259 views
How to store CFBitVector (or any CFType) in Core Data using CFData/NSData?
I have limited experience working with the Core Foundation types & collections, so apologies if this is obvious.
I'm using the CFBitVector type to store some bit sequences, and I need to store it ...
0
votes
1answer
398 views
CGImageDestinationCreateWithData not creating a CGImageDestinationRef object
I'm sure this is something simple, but I just can't find it.
I am trying to create a CGImageDestinationRef using the CGImageDestinationCreateWithData function, but its returning me a nil.
Function ...
0
votes
1answer
482 views
Getting an int out of NSConcreteValue / NSValue
I am trying to extract an int inside of a NSValue / NSConcreteValue instance. I tried to cast them this way, but it didn't work:
NSValue *toValue = (NSValue *)someValue;
NSNumber *toNumber = ...
2
votes
3answers
519 views
how to release a CF object object correctly?
I have this method (someone else wrote it!)
- (CGPDFDocumentRef)getPdf {
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString ...
1
vote
0answers
114 views
Does kCFSocketDataCallBack merge multiple messages in the CFData object?
I'm reading OSC messages via TCP with CFSocket and a callback of type kCFSocketDataCallBack. Sometimes I'm getting a CFData object bigger than the specified OSC message length. The question is if ...
3
votes
5answers
949 views
In Objective-C, how to print out N spaces? (using stringWithCharacters)
The following is tried to print out N number of spaces (or 12 in the example):
NSLog(@"hello%@world", [NSString stringWithCharacters:" " length:12]);
const unichar arrayChars[] = {' '};
...
4
votes
2answers
1k views
Issue with CFArrayRef and NSArray when drawing gradient using ARC
I have an ARC project and am trying to draw a vertical linear gradient. The code below works on the simulator, but throws a memory /EXC_BAD_ACCESS error when testing on the device. The app crashes on ...
0
votes
3answers
289 views
Converting aligned array uint8[8] to double
I am facing a bit of a challenge trying to convert an aligned array uint8[8] to a double.
It was particularly easy to convert uint8[4] to long with bit-operations, but i understand that the double can ...
2
votes
1answer
407 views
iPhone how to properly handle Core Foundation references with ARC?
I'm very new to the core foundation programming and would like to know what I'm thinking of doing is correct. I'm using ARC, and am not sure of how it handles non-object references. I need to save a ...
0
votes
2answers
168 views
Saving CFDictionaryRef in Core Data
Im trying to save CFDictionaryRef to my core data model and I cant really find information on how to do so.
It will be immensely appreciated if someone could supply more information about it
...
1
vote
2answers
355 views
Call to CFReadStreamRead stops execution in thread
NB: The entire code base for this project is so large that posting any meaningful amount wold render this question too localised, I have tried to distil any code down to the bare-essentials. I'm ...
12
votes
1answer
2k views
strong @property with __attribute__((NSObject)) for a CF type doesn't retain
UPDATE: This issue has been fixed as of Xcode 4.6!
(ARC, Xcode 4.3.1, iOS 5.1)
I have a strong property of a CF type (CGImage) that I want to be automatically managed by ARC using ...
0
votes
1answer
68 views
CFCalendarGetOrdinalityOfUnit gives unexpected value in iOS 5.0 (9A334)
I am getting a strange problem in iOS 5.0 (9A334). The problem is I use CFCalendarGetOrdinalityOfUnit to get the day of week for a particular date.
CFCalendarRef theCalendar = CFCalendarCopyCurrent();
...
1
vote
1answer
1k views
Is a “CFRelease” needed if I am using CGImageSourceCreateWithData from a (__bridge)?
My question is very simple, I would like to know if the method "CGImageSourceCreateWithData" creates a new object copying the data I provide so that that I have to release it when I don't need it ...
3
votes
1answer
713 views
Retained Core Foundation Property
(Xcode 4.2, iOS 5, ARC)
I have some properties of Core Foundation (/Graphics) objects that should take ownership of their objects. Now in these Apple docs I found this:
In OS X v10.6 and later, ...
-2
votes
2answers
485 views
Resolve potential memory leaks
I am getting the following memeory leaks after running analyze tool in xcode
//Getting memeory leak warning here "Potential leak of an object allocated and stored into 'phones'
ABMultiValueRef phones ...
0
votes
2answers
372 views
CFReadStream - start in the background
there's an audio application which streams files via network, everything works fine but one thing. To play the next track automatically in the background the CFReadStream is initialized (i can see it ...
3
votes
2answers
153 views
How to properly use Foundation's NSString with CoreFoundation functions?
I'd like to simplify some of my keychain services code and use CFDictionarySetValue with Foundation's NSString.
Declaration of CFDictionarySetValue goes like that:
void ...

