#ifdef __APPLE__
CFBundleRef ref = CFBundleGetMainBundle();
CFURLRef fileURL = CFBundleCopyResourcesDirectoryURL(ref);
CFStringRef filePath = CFURLCopyFileSystemPath(fileURL, kCFURLPOSIXPathStyle);
CFStringEncoding encodingMethod = CFStringGetSystemEncoding();
constchar*path =CFStringGetCStringPtr(filePath, encodingMethod);
resPath= path;
#endif
网友评论