gpt4 book ai didi

ios - 如何在 ios 的方形应用程序中创建相同的动画?

转载 作者:行者123 更新时间:2023-11-29 10:42:59 25 4
gpt4 key购买 nike

AppStore 链接 https://itunes.apple.com/us/app/square-one-shopping-centre/id400294134?mt=8

我想创建与 SQUARE 应用程序的第一个屏幕 TableView 相同的动画。

当 tableview 上下滚动时,单元格带有动画。任何人都可以帮助我实现这一目标。

- (UITableViewCell *)tableView:(UITableView *)tableView
cellForRowAtIndexPath:(NSIndexPath *)indexPath
{

static NSString *CellIdentifier = @"notificationCell";
notificationCell *cell = (notificationCell *) [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

if (cell == nil) {

NSArray *topLevelObjects = [[NSBundle mainBundle] loadNibNamed:@"notificationCell" owner:self options:nil];

for (id currentObject in topLevelObjects){
if ([currentObject isKindOfClass:[UITableViewCell class]]){
cell = (notificationCell *) currentObject;
break;
}
}

}
cell.imgFacebookTwitter.image=[UIImage imageNamed:@"tw_icon.png"];

return cell;


}

最佳答案

您必须使用 CATransform3D 动画并将其应用到willDisplayCell:cellforRowAtIndexPath: 方法。

查看本教程 - Animating UITableView Cells .

它应该为您指明正确的方向。

关于ios - 如何在 ios 的方形应用程序中创建相同的动画?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23565819/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com