私を助けてください!
次のように Parse.com から画像をダウンロードします。
self.images = [[NSMutableArray alloc] init];
PFImageView *creature = [[PFImageView alloc] init];
PFQuery *query = [PFQuery queryWithClassName:@"SubCatergory"];
[query findObjectsInBackgroundWithBlock:^(NSArray *comments, NSError *error) {
for (PFObject *comment in comments) {
PFFile *file = [comment objectForKey:@"imageFile"];
creature.file = file;
creature.frame = CGRectMake(0, 0, 100, 100);
// creature.userInteractionEnabled =YES;
[creature loadInBackground];
//[self.images addObject:creature];
[self.images addObject: creature];
}
}];
これらをiCarouselに入れてください:
-(UIView *)carousel:(iCarousel *)carousel viewForItemAtIndex:(NSUInteger)index reusingView:(UIView *)view
{
PFImageView* img = [self.images objectAtIndex:index];
PFImageView* imgView = [[PFImageView alloc] initWithImage:img];
return img;
}
ローカル画像を使用すると、iCarousel が正常に動作します。デリゲートとデータソースを設定しました。私の画像配列の内容は次のようなものです:
>"、"
エラーが発生しました:
[PFImageView の長さ]: インスタンス 0xf40e9d0 に送信された認識されないセレクター