gpt4 book ai didi

ios - UIView 转换到同一个 View

转载 作者:可可西里 更新时间:2023-11-01 06:23:30 25 4
gpt4 key购买 nike

我有一个显示静态 tableviewUITableView Controller 。我必须更新提供辅助模式的项目,其中该 tableview 应该翻转并显示不同的数据。我的方法是将两种模式的所有静态单元格放在一个大的静态 tableview 中,以执行翻转并隐藏在特定时刻不需要的单元格。翻转应该只在 tableviewcontrollerview 上执行,因此不会影响 navigationbar 或主 tabbar。到目前为止,我一直在尝试使用的代码来实现这个简单的魔术是:

// Transition using a page flip.
[UIView transitionFromView:self.tableview
toView:self.tableview
duration:0.7
options:UIViewAnimationOptionTransitionFlipFromLeft
completion:^(BOOL finished) {
if (finished) {
/* HIDE NOT REQUIRED CELL */

}
}];

不幸的是,结果是黑屏。知道如何解决吗?

最佳答案

尝试使用下面的代码:

[UIView transitionWithView:self.tableView 
duration:0.7
options:UIViewAnimationOptionTransitionFlipFromLeft
animations:^{
/* any other animation you want */
} completion:^(BOOL finished) {
/* hide/show the required cells*/
}];

关于ios - UIView 转换到同一个 View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14961415/

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