hello,
i ve a string , for example:
NSString *str = @"12,20,40,320,480"
This str has to be given as buffer value,
UInt8 *buffer;
Now how to give the str as buffer value? The value of str string keeps changing , and hence buffer has to dynamically take the value as str everytime.
plz help me how to achieve this.
Thank
…