.gif图像没有显示动画,这里我在ImageView中设置.gif图像

时间:2017-10-12 13:08:06

标签: objective-c

.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];
}

0 个答案:

没有答案