摘要:
//// CCEncoding.m// CCFC//// Created by xichen on 11-12-18.// Copyright 2011 ccteam. All rights reserved.//#import "CCEncoding.h"@implementation CCEncoding// log all encodings+ (void)logAllEncodings{ const NSStringEncoding *encodings = [NSString availableStringEncodings]; NSMutable... 阅读全文
摘要:
//// CCFile.h// CCFC//// Created by xichen on 11-12-23.// Copyright 2011 ccteam. All rights reserved.//#import <Foundation/Foundation.h>#include <stdio.h>// a file class that processes c file funcs like fopen, fread, fwrite, ftell, fclose and so on@interface CCFile : NSObject {@private F 阅读全文
摘要:
//// CCEncoding.h// CCFC//// Created by xichen on 11-12-18.// Copyright 2011 ccteam. All rights reserved.//#import <Foundation/Foundation.h>// "陈曦" 的unicode编码为: // 0x48 0x96 0xE6 0x66 // UTF8编码为:// 0xE9 0x99 0x88 0xE6 0x9B 0xA6 // GB18030编码为:// 0xB3 0xC2 0x... 阅读全文
摘要:
//// CCEmoji.m// CCFC//// Created by xichen on 11-12-23.// Copyright 2011 ccteam. All rights reserved.//#import "CCEmoji.h"#import "CCUITextView.h"@implementation CCEmoji// returns a textView that contains nearly all the emojis+ (UITextView *)returnAllEmojiTextView{ NSMutableStri 阅读全文
摘要:
//// CCEmoji.h// CCFC//// Created by xichen on 11-12-23.// Copyright 2011 ccteam. All rights reserved.//#import <Foundation/Foundation.h>@interface CCEmoji : NSObject {}// returns a textView that contains nearly all the emojis+ (UITextView *)returnAllEmojiTextView;@endgooglecode链接地址(会有更新): htt 阅读全文