Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ユーザーがフォト ライブラリから 1 つの画像を選択し、その画像を SOAP を使用して Web サーバーに渡す必要がある 1 つのアプリケーションを作成しています。その NSData を Web サーバーで符号なしバイト形式として渡します。
私は本当にこの問題に行き詰まっているbcozを助けてください。
編集: uint8 の識別子は %s になります
これを行う:
NSData *data = UIImagePNGRepresentation(yourImage); if(data) { Byte *byteData = (Byte*)malloc([data length]); // unsigned byte memcpy(byteData, [data bytes], [data length]); }