「Objective-C」ファイルからNSDataオブジェクトを生成するサンプル

サンプルコード
// ファイルからNSDataオブジェクトを生成
NSBundle *nsBundle= [NSBundle mainBundle];
NSString nsPath = [nsBundle pathForResource:@"userReg" ofType:@"png"];
NSData *cft = [[NSData alloc] initWithContentsOfFile:nsPath];
// サイズを取得する
int fileLength = [cft length];

Objective-C

Posted by arkgame