How do we clear out contents in NSMutableData

后端 未结 2 1008
Happy的楠姐
Happy的楠姐 2021-02-05 04:05

How do we clear an NSMutableData without using release and then re-alloc/init again to be used again? I was looking at resetBytesInRange to be set at zero but I am unsure of th

2条回答
  •  梦毁少年i
    2021-02-05 04:07

    If you want an empty buffer:

    [data setLength:0];
    

    If you want to keep its size but set all the bytes to zero:

    [data resetBytesInRange:NSMakeRange(0, [data length])];
    

提交回复
热议问题