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.
私はiPhone開発が初めてです。画像が URL の形式で利用できる場合は、SdwebImage を使用しても問題ありません。しかし、データ形式の画像になると、これを使用できません。
前もって感謝します。
に変換するNSData必要NSStringがあり、この後、に変換しNSStringてNSURL次のように使用する必要がありますSDWebImage:-
NSData
NSString
NSURL
SDWebImage
NSString *urlString = [[NSString alloc] initWithData:myData encoding:NSUTF8StringEncoding]; NSURL *url = [[NSURL alloc] initWithString:urlString];