Users Pricing

forum

home / developersection / forums / converting data of nsdata into bytes array in ios

Converting data of NSData into bytes array in iOS

Anonymous User 2171 20 Nov 2015

I have getting problem with conversion of NSData into bytes array.
this is the code that I am using:

NSData *myData = [NSData dataWithContentsOfFile:pathOfFile];
int dataLength = [myData length];
Byte byteData[dataLength];
byteData = [myData bytes];

My last line generating error 'incompatible types in assignment'.
Can anyone tell me the correct way to do it.


I am a content writter !


1 Answers

Tarun Kumar 20 Nov 2015 Accepted Answer