我从Apple 的 SimpleFTPSample 中获取了一些示例代码
看起来像这样:
@interface PutController () <UITextFieldDelegate, NSStreamDelegate>
...
@property (nonatomic, assign, readonly) uint8_t *buffer;
...
@end
@implementation PutController
{
uint8_t _buffer[kSendBufferSize];
}
...
@end
但是当我将它复制到我的代码时,我得到一个错误:
属性“缓冲区”的类型(“uint8_t *”(又名“unsigned char *”))与实例变量“_buffer”的类型不匹配(“unsigned char [32768]”)
我的代码与他们的示例完全相同,但无法编译。这里发生了什么?