【问题标题】:UIView with UITableView AnimationUIView 与 UITableView 动画
【发布时间】:2014-05-08 22:27:54
【问题描述】:

我正在尝试淡化包含UITableViewUIView

[UIView animateWithDuration:10.0 animations:^{
    [self.relatedTableView setAlpha:0.9];
}];

问题是在这 10 秒内我无法滚动 UITableView,知道如何解决吗?

【问题讨论】:

标签: ios objective-c


【解决方案1】:

试试这个

[UIView animateWithDuration:10.0f delay:0.0f options:UIViewAnimationOptionAllowUserInteraction animations:^{

    [self.relatedTableView setAlpha:0.9];

} completion:^(BOOL finished) {
    NSLog(@"Done");

}];

【讨论】:

  • 谢谢!它解决了问题
猜你喜欢
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2013-05-04
  • 2015-09-30
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
相关资源
最近更新 更多