昨天,今天,明天,每天的每天,你是否都多懂得一点点...

星期四, 三月 19, 2015

Objective C append bytes

 const char *bytes = [jsonData bytes];

        

        NSMutableData *data = [[NSMutableData alloc] init];

        

        for (int i = 0; i < [jsonData length]; i++){

            unsigned char c = (unsigned char)bytes[i];

            if (c < 32 && c != 10 && c != 14){

                //Do nothing

            }else{

                [data appendBytes:&c length:1];

            }

        }


--
Feng

没有评论:

其它博客地址

此博客的同步博客地址: http://fengnz.wordpress.com
这里进入我的MSN SPACE.