gpt4 book ai didi

ios - Google Plus Like Tableviewcell 弹出窗口

转载 作者:塔克拉玛干 更新时间:2023-11-02 07:48:26 26 4
gpt4 key购买 nike

我试图模仿当用户点击 tableView 中的单元格时 Google+ 应用程序的行为。我意识到这是一个高度定制的 tableView 版本,但我想知道是否有人对从哪里开始有任何指示。大多数像这样的大功能似乎都有一个开源项目,有人已经在模仿它,但我找不到一个。谢谢!

最佳答案

dispatch_async(dispatch_get_main_queue(), ^{
CALayer *layer = cell.layer;
layer.transform = CATransform3DMakeTranslation(-layer.bounds.size.width/4, 0, 0.0f);;

NSTimeInterval animationDuration =0.2;
// The block-based equivalent doesn't play well with iOS 4
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:animationDuration];
cell.layer.transform = CATransform3DIdentity;
cell.layer.opacity = 1.0f;
[UIView commitAnimations];

});

尝试一下您应该能够做到的变换。在单元格中使用它会显示功能

关于ios - Google Plus Like Tableviewcell 弹出窗口,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16225764/

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