Iphone development custom FONT

[ 2009-11-26 15:47:59 | 作者: ccloveaa ]
字体大小: | |
iphone上面应用自定义的truetype字体

#import <dlfcn.h>
....

typedef bool (*A_FUNC_TYPE)(const char*);

NSUInteger LOAD_FONT(){
NSUInteger newFontCount = 0;
NSBundle *frameworkBundle = [NSBundle bundleWithIdentifier:@"com.apple.GraphicsServices"];
const char *frameworkPath = [[frameworkBundle executablePath] UTF8String];
if (frameworkPath) {
void *graphicsServices = dlopen(frameworkPath, RTLD_NOLOAD | RTLD_LAZY);
if (graphicsServices) {
A_FUNC_TYPE GSFontAddFromFile = (A_FUNC_TYPE)dlsym(graphicsServices, "GSFontAddFromFile");

if (GSFontAddFromFile)
for (NSString *fontFile in [[NSBundle mainBundle] pathsForResourcesOfType:@"ttf" inDirectory:nil])
newFontCount += GSFontAddFromFile([fontFile UTF8String]);
}
}
printf("NEW FONT COUNT = %d\n",newFontCount);
return newFontCount;
};
评论Feed 评论Feed: http://www.ccloveaa.com/blog/feed.asp?q=comment&id=475
Gunner!Lingo,Flash action script,max plug-in.
Contact Way:QQ:58920142 MSN:ccloveaa@sina.com
李连杰->壹基金->民间后援团!

这篇日志没有评论.

发表评论
表情图标
[smile] [confused] [cool] [cry]
[eek] [angry] [wink] [sweat]
[lol] [stun] [razz] [redface]
[rolleyes] [sad] [yes] [no]
[heart] [star] [music] [idea]
UBB代码
转换链接
表情图标
悄悄话
用户名(*):   密码:   注册?
验证码 * 请输入验证码