.gif图像没有显示动画,这里我在ImageView中设置.gif图像。 这是我的代码。我的项目中有这些.gif图像。
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
NBoostDetailCell *cell = (NBoostDetailCell *) [tableView dequeueReusableCellWithIdentifier:@"gifCell"];
[cell imgViewgif].animationImages = [NSArray arrayWithObjects:
[UIImage imageNamed:[cellData valueForKey:@"gifImage"]], nil];
[cell imgViewgif].animationDuration = 0.5f;
[cell imgViewgif].animationRepeatCount = 100;
[[cell imgViewgif] startAnimating];
}