我使用CFStringRef
从CFDictionaryRef
中获得CFDictionaryGetValue
。
我一直在尝试使用CFStringRef
或char*
将CFStringGetCString
转换为CFStringGetCStringPtr
,它们会返回NULL或崩溃。
有办法做到这一点吗?怎么样?
谢谢。
编辑:示例代码:
SecStaticCodeRef staticCode;
CFDictionaryRef information;
SecCSFlags flags = kSecCSInternalInformation
| kSecCSSigningInformation
| kSecCSRequirementInformation
| kSecCSInternalInformation;
CFURLRef pathURL = NULL;
CFStringRef pathStr = NULL;
CFStringRef uniqueid;
char* str = NULL;
CFIndex length;
pathStr = CFStringCreateWithCString(kCFAllocatorDefault,
filename, kCFStringEncodingUTF8);
pathURL = CFURLCreateWithString(kCFAllocatorDefault, pathStr, NULL);
SecStaticCodeCreateWithPath(pathURL, kSecCSDefaultFlags, &staticCode);
SecCodeCopySigningInformation(staticCode, flags, &information);
uniqueid = (CFStringRef) CFDictionaryGetValue(information, kSecCodeInfoUnique);
// how do I convert it here to char *?
length = CFStringGetLength(uniqueid);
str = (char *)malloc( length + 1 );
CFStringGetCString(uniqueid, str, length, kCFStringEncodingUTF8);
printf("hash of signature is %s\n", str);
CFRelease(information);
CFRelease(staticCode);
答案 0 :(得分:24)
来自example code中的第17章iOS:PTL。
char * MYCFStringCopyUTF8String(CFStringRef aString) {
if (aString == NULL) {
return NULL;
}
CFIndex length = CFStringGetLength(aString);
CFIndex maxSize =
CFStringGetMaximumSizeForEncoding(length, kCFStringEncodingUTF8) + 1;
char *buffer = (char *)malloc(maxSize);
if (CFStringGetCString(aString, buffer, maxSize,
kCFStringEncodingUTF8)) {
return buffer;
}
free(buffer); // If we failed
return NULL;
}
必须始终释放生成的缓冲区(这就是名称中Copy
的原因)。链接的示例代码也有一个稍快的版本,使用您提供的缓冲区。
答案 1 :(得分:10)
另一个答案:
const char *cs = CFStringGetCStringPtr( cfString, kCFStringEncodingMacRoman ) ;
puts( cs ) ; // works
我找不到kCFStringEncodingUTF8
给出NULL的原因,但kCFStringEncodingMacRoman
似乎工作正常。
答案 2 :(得分:8)
针对同一问题还有另一种解决方案:
char * myCString = [(__bridge NSString *)myCfstring UTF8String];
快乐编码:)
答案 3 :(得分:5)
为什么不简单:printf("%s\n", CFStringGetCStringPtr(uniqueid, kCFStringEncodingUTF8));
?
答案 4 :(得分:0)
来自String Programming Guide for Core Foundation 文档。以下是如何将CFStringRef的内容作为C字符串获取。
我已经对它进行了修改,这应该可以满足您的需求。
#include <CoreFoundation/CoreFoundation.h>
CFStringRef str;
//Removed CFRange
const char *bytes; //This is where the conversion result will end up.
str = CFSTR("You Want this String!\n"); //Changed this part
bytes = CFStringGetCStringPtr(str, kCFStringEncodingMacRoman);
if (bytes == NULL)
{
//Adding in getting the size
CFIndex stringLengthIndex = CFStringGetLength(str);
//Converted index (signed long ) to int
char localBuffer[(int) stringLengthIndex];
Boolean success;
success = CFStringGetCString(str, localBuffer, stringLengthIndex, kCFStringEncodingMacRoman);
}
//At this point the "bytes" variable should contain your C string copied from the provided CFStringRef
答案 5 :(得分:0)
非常简单:
CFStringEncoding encodingMethod = CFStringGetSystemEncoding();
const char *path = CFStringGetCStringPtr(cfStrRef, encodingMethod);