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.
一部の画像を Parse Server に保存し、それを iOS アプリに取り込みたいと考えています。それを行う方法はありますか?
利用可能なチュートリアルはありますか? 検索してみましたが、見つかりませんでした..
通常は UIImageView を使用する場所に PFImageView を使用します。表示したい画像の PFFile を渡してから、loadInBackground を呼び出します。
PFFile *imageFile = [pfObject objectForKey:@"image"]; PFImageView *imageView = [[PFImageView alloc] init]; imageView.file = imageFile; [imageView loadInBackground];