我有这段代码:
[self.commands appendBytes:"\x1d\x57\x80\x31" length:sizeof("\x1d\x57\x80\x31") - 1];
我想避免重复char数组,如:
- (void)appendBytes:(char *)bytes
{
[self.commands appendBytes:bytes length:sizeof(bytes)];
}
然后使用它:
[self appendBytes:"\x1d\x57\x80\x31"];
嗯,这就是想法,但我的知识现在几乎为零。