Apple's suite of functions in CoreFoundation for string-handling. Toll-free bridged with NSString
0
votes
0answers
50 views
CFString Dispose random crash
I am trying to create a thumbnail image of pdf in Monotouch but the app crashes sometimes and throws below error.
Stacktrace:
at MonoTouch.CoreFoundation.CFString.Dispose () [0x00000] in ...
0
votes
0answers
28 views
CFStringRef from char* without providing encoding type
I have a C string:
unsigned char* contents = readInFile(path); //sting bytes in some unknown NSStringEncoding encoding.
I want to know the current NSStringEncoding value of contents. I want to do ...
0
votes
0answers
131 views
Function could not be resolved Eclipse
I am trying to use quicktime in order to play sounds from my C++ code running on eclipse.
This is just an example:
#include <iostream>
#include <QuickTime/Movies.h>
using namespace std;
...
0
votes
1answer
43 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: ...
0
votes
1answer
66 views
How do I use precomposedStringWithCanonicalMapping with CFStringref in plain C
I need to parse the defaults database for Recent files, in Mac Os X. This is done with sed. The caveat is that the filenames are stored in decomposed utf-16 inside there.
So, I thought, (after having ...
1
vote
2answers
67 views
What causes “invalid CFStringRef” in this code?
I just try to play an apple's HLS sample stream. My code is very simple:
- (IBAction)playHLS:(id)sender {
NSString* str = ...
3
votes
1answer
101 views
Strange behaviour from CFStringCompareWithOptions
I'm trying to find out exactly how I can match the first n characters of a string with another. Here's some code I've got at the moment:
CFStringRef myStringRef = CFSTR("hello");
CFStringRef ...
1
vote
0answers
138 views
Obj-c *** -[CFString copyWithZone:]: message sent to deallocated instance
Here is the complete error in debugger :
2012-11-11 17:57:34.534 Killer[13745:707] *** -[CFString copyWithZone:]: message sent to deallocated instance 0xee57540
2012-11-11 18:01:59.231 ...
0
votes
1answer
124 views
How do I store the data within CFDataRef in unicode (BE) format?
I'm writing string data to a file in which the data should be written in ASCII and then essentially repeated in Unicode. The ASCII portion is working well, but the Unicode version is garbled. ...
0
votes
0answers
276 views
Variable is not a CFString at this time - Error
I have got this error during the debugging through device. In simulator it is working fine. How to solve that issue?
- (IBAction)buttonDigitPressed1:(UIButton *)button
{
NSString *integerPart = ...
0
votes
0answers
203 views
Invalid CFStringRef from ABMultiValueCopyLabelAtIndex
I'm getting telephone numbers from the address book. I'm doing it this way:
ABMultiValueRef arrTelefonos = ABRecordCopyValue(contacto,kABPersonPhoneProperty);
for(int ...
0
votes
3answers
461 views
release CFString
I use this code to get the last name of ABPerson
CFStringRef lastNameRef = ABRecordCopyValue((ABRecordRef)personRecordRef, kABPersonLastNameProperty);
NSString *friendLastName = ...
0
votes
1answer
483 views
Core Foundation creates a memory leak for every call to CFSTR()
I normally use CFSTR() macro to create a CFString object from a standard c string until, after several test and checking better the documentation, I realized that every call to this function creates ...
0
votes
1answer
327 views
Invalid CfStringRef plist (Array of dictionaries) iOS
I have the following code in my file
NSString *filePath = [[NSBundle mainBundle]pathForResource:@"images" ofType:@"plist"];
NSArray *array = [[NSArray ...
0
votes
2answers
281 views
Convert CFStringRef to QString
cross platform c++ header file. separate c++ file for each platform: windows, linux, mac. Deals with platform specific implementation of enumerating windows.
on the mac side: I have a CFStringRef ...
1
vote
1answer
76 views
How to get a specific attribute from a CFString
I want to know whether a string is single-byte encoding. The CFShowStr can do this work, but it output the message to the console. The CFShowStr function output message is look like this, the ...
0
votes
1answer
1k views
iphone: -[CFString release]: message sent to deallocated instance
an app I'm working on keeps crashing when run on the iPhone but not on the Simulator (although a warning is shown when run without symbolic malloc_error_break, but the app keeps working on the Sim)
...
3
votes
2answers
603 views
CFString objects being declared by [NSBundle mainBundle]
I am working on performance improvement of my ios cocos2d game. I was checking memory allocations of the app with the help of Instruments tool when I noticed one thing. There are too many CFString ...
1
vote
1answer
1k views
URL encode string in ios failing
I am trying to url encode a string in my iOS 5 app using ARC.
This is how i do it:
- (NSString *)escape:(NSString *)text
{
return (__bridge NSString ...
2
votes
1answer
126 views
Passing a CFStringRef pointer to a C function in MacRuby
I wanted to call the following function from OS X's DVDPlayback framework:
OSStatus DVDGetMediaVolumeCFName (
CFStringRef *outDiscVolumeCFName
);
Eventually, I came up with the following working ...
1
vote
0answers
426 views
-[CFString hash]: message sent to deallocated instance
I'm trying to fetch EKEvents from the Event Store to populate a UITableView and display a month list view.
Basically it works and I'm doing it like this:
- (void) reloadEvents
{
for ( NSString ...
-1
votes
4answers
251 views
variable is not a CFStringRef
I have this:
partenaire_lat = 48.8160525;
partenaire_lng = 2.3257800;
And obtain a NSString like this:
NSString *endPoint =[NSString stringWithFormat:@"%@,%@", partenaire_lat, partenaire_lng];
...
1
vote
3answers
845 views
What Is -[NSURL _fastCharacterContents]:?
So I'm calling this in a method:
-(id)initWithContentURL:(NSString *)url {
if (self = [super init]) {
NSLog(@"xSheetMusicViewController - %@",url);
// Casting an NSString object pointer to a ...
0
votes
1answer
59 views
Can set to nil but not to a diferent thing
i think i dont finish to understand all about memory and that stuff but this is my problem:
I have a variable defined idActual on a view that will be pushed (var defined in its header), i can read ...
0
votes
4answers
195 views
iphone app is crashing while assigning a string value to the table view
i my iphone app while assigning a string value to the table view its crashing, i have the following code in cellForRowAt index path method
while assigning a string value to the table view
...
2
votes
3answers
245 views
Mono C# PInvoke - Get CFString from external lib
I have a lib that returns a CFString, and I'm trying to get that string value in C#..
The problem is that I don't know how to do this in C#..
Making the external function return a CFString won't work ...
1
vote
1answer
658 views
How to get an array of sentences using CFStringTokenizer?
I've created an string tokenizer like this:
stringTokenizer = CFStringTokenizerCreate(NULL, (CFStringRef)str, CFRangeMake(0, [str length]), kCFStringTokenizerUnitSentence, userLocale);
But how do I ...
1
vote
1answer
266 views
CFData vs CFString
I have a CFMutableDictionaryRef, part of which in debugger is:
"device-id" = <72270000>;
model = <474d4120 39353000>;
"vendor-id" = <86800000>;
Now I can get value of the key ...
3
votes
1answer
3k views
How to convert NSString path to CFURLRef (for iOS 3.1)?
I display a PDF in a UIScrollView. To do so I use :
myDocumentRef = CGPDFDocumentCreateWithURL((CFURLRef)[[NSBundle mainBundle] URLForResource:@"salonMap" withExtension:@"pdf"]);
Now, I try to make ...
1
vote
1answer
649 views
CFStringRef setting a value to “”
I have a variable which is a CFStringRef and I perform a check to make sure its not 1 specific value. If it is then I want to set it to the NSString equivalent of @""
Here's the code
CFStringRef ...
2
votes
1answer
985 views
How to silence Xcode 4 warning “Semantic Issue: CFString literal contains NUL character”?
I am using something like:
illegalCharacters = [[NSCharacterSet characterSetWithCharactersInString:@"\x00\.."] retain];
Xcode 4 displays a warning for it
(Semantic issue: CFString literal
...
0
votes
3answers
173 views
Diagnosing error: “release sent to deallocated object”
I received this error message:
message [CFString release] sent to deallocated object at 0x........
How can I know which string caused this problem? Can I figure out which CFString it is using the ...
0
votes
1answer
2k views
A variable not a CFString
I'm coding on Ojective-C just for month and get in the deadlock. Need help.
Here is the story:
I have a simple class LXPPlayingCard:
#import <Cocoa/Cocoa.h>
@interface LXPPlayingCard : ...
2
votes
1answer
2k views
I want to pass a variable in CFSTR?
In following coding, i want to pass variable via CFSTR, how can I ?
ABMutableMultiValueRef address = ABMultiValueCreateMutable(kABDictionaryPropertyType);
// Set up keys and values for the ...
0
votes
1answer
174 views
Class dump and CFObjects
Does class dump get confused by CFObjects/structs? I used class dump on an application and one of the method's argument was a struct arg1 which is a BInstantMessage:
struct BInstantMessage {
void ...
0
votes
1answer
657 views
What is __CFString?
I have arg1 which is an IMessage. IMessage is defined as:
struct IMessage {
...
struct CFString _field2;
...
};
and CFString is defined as:
struct CFString {
void ...
0
votes
2answers
523 views
What NSString compare method call is equivalent to a CFStringCompare function call?
I am converting some old carbon code to Cocoa and need to use a comparison function that will return the same result as the one in carbon.
I am calling:
CFStringCompare( stringA, stringB, ...
4
votes
2answers
1k views
Convert a CFStringRef to a C string?
Hello lovely computer people:
I would like to convert the following CFStringRef into a CString. Any idea how?
recordFilePath = (CFStringRef)[NSTemporaryDirectory() stringByAppendingPathComponent: ...
2
votes
0answers
515 views
Variable Not a CFString
I am using a database to populate a table view. I created an NSMutable Array of object in the AppDelegate. The Array is populated from the DB as follows:
if(sqlite3_open([dbPath UTF8String], ...
1
vote
3answers
2k views
How To Convert CFDataRef from NSString?
I am trying to convert CFDataRef from NSString. I googled a lot but did n't succeed.
I tried following but goes in vain..
CFDataRef myDataRef = (CFDataRef)[myString ...
0
votes
2answers
300 views
CFString release, why only on ipad?
I have the same project, that at the beginning, it worked also on ipad, but now it works only on iphone devices, not ipad ones. It's a project iphone/ipad compatibile.
Probably i edit something but ...
0
votes
1answer
945 views
CFString isNaturallyRTL - message sent to deallocated instance
I already googled for "CFString isNaturallyRTL" with 0 results.
these are my classes:
//in .H
@interface myViewController : UIViewController {
UITextField *from;
UITextField *to;
NSString *fromText;
...
0
votes
1answer
2k views
Returning NSString, Error Message: Variable is not CFString
i shortly started Programming Mac OS X Applications with Cocoa, so its a realy New bee question. Sorry about this.
At first my code snippet:
- (id)tableView:(NSTableView *)tableView ...
1
vote
1answer
106 views
How to replace old ParamText/StandartAlert with newer CFString replacements?
ParamText() is an really old way of replacing parameters in a string that is based on Pascal strings. Also StandardAlert is not quite Unicode ready.
The new message box (not so new) replacement is ...
2
votes
2answers
1k views
What kind of strings does CFStringCreateWithFormat expects as arguments?
The below example should work with Unicode strings but it doesn't.
CFStringRef aString = CFSTR("one"); // in real life this is an Unicode string
CFStringRef formatString = CFSTR("This is %s ...
0
votes
1answer
2k views
iPhone + NSString error
I have static NSString as below:
static NSString *bowlerName;
In the code I am assigning it with some value as below:
-(void)setBowlerSpecifications:(int)playerId
{
Player *objPlayer = ...
1
vote
1answer
2k views
Create constant NSString from constant CFStringRef
I am attempting to create a Cocoa Framework that is an object-oriented wrapper around a procedural framework written in the Core Foundation. The procedural framework has a number of constants that are ...
1
vote
1answer
551 views
Creating a CFString object with JNA
I'm trying to get the hang of using JNA with Mac OS X. I want to access a Carbon library, for which there is no Cocoa equivalent, so Rococoa can't help me (I think...)
I'm stuck when trying to call a ...
5
votes
2answers
4k views
How do I print a CFStringRef in a DTrace action?
I have a DTrace probe catching calls to a function, and one of the function's arguments is a CFStringRef. This is private structure that holds a pointer to a unicode string. But the CFStringRef is not ...
0
votes
1answer
245 views
Get a calculated length of a Core Foundation string given an encoding
Is there a way to get the length in bytes of a CFString given an arbitrary character encoding? It seems possible because the function CFStringGetSmallestEncoding must do some calculations already, but ...
