• 导航控制器在pushViewController时的动画卡顿问题


    昨天在调试导航控制器的时候发现在push的时候动画有卡顿的现象,出现卡顿问题的代码如下:

    1 - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
    2     UIViewController* newController = [[UIViewController alloc] init];
    3     newController.title = @"新的控制器";
    4     [self.navigationController pushViewController:newController animated:YES];
    5 }

      一开始以为是电脑性能问题,就没在管它,今天早上再次调试的时候还是有这个问题,因为这次切换后的控制器是UITableViewController,重新运行后发现卡顿现象没了,代码如下:

    1 - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
    2     UITableViewController* newController = [[UITableViewController alloc] init];
    3     newController.title = @"新的控制器";
    4     [self.navigationController pushViewController:newController animated:YES];
    5 }

    然后就对这个问题来兴趣了,为什么切换成UIViewController时会有卡顿的问题呢?先对比一下UITableViewController和UIViewController的不同之处,UITableViewController的View是一个列表,背景色默认为白色,UIViewController的View时空白的,背景显示黑色。背景显示黑色一般有两个原因:

    1、背景色是黑色的。

    2、UIColor的alpha值是0。

    难道UIViewController的View默认是黑色的?先来验证一下。

    1 - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
    2     UIViewController* newController = [[UIViewController alloc] init];
    3     UIColor* color = newController.view.backgroundColor;
    4     NSLog(@"Color: %@", color);
    5     newController.title = @"新的控制器";
    6     [self.navigationController pushViewController:newController animated:YES];
    7 }

    控制条输出结果是:

    2015-06-04 12:30:17.007 Weibo[5110:607] Color: (null)

    UIViewController的View的color属性是空的,很明显,背景显示黑色的原因是因为颜色是透明的。

    UITableViewController的验证结果如下:

    1 - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
    2     UITableViewController* newController = [[UITableViewController alloc] init];
    3     UIColor* color = newController.view.backgroundColor;
    4     NSLog(@"Color: %@", color);
    5     newController.title = @"新的控制器";
    6     [self.navigationController pushViewController:newController animated:YES];
    7 }

    输出结果:

    2015-06-04 12:34:12.555 Weibo[5128:607] Color: UIDeviceRGBColorSpace 1 1 1 1

    所以,导致卡顿的的罪魁祸首就是UIViewController的View的默认color为空,背景色是透明的。这其实不是卡顿,而是由于透明颜色重叠后视觉上的问题,设置一个背景色就可以了。

  • 相关阅读:
    VituralBox 虚拟机网路设置 主机无线
    布局
    Git 安装
    剑指offer——33分行从上到下打印二叉树
    剑指offer——32从上到下打印二叉树
    剑指offer——31序列化二叉树
    剑指offer——30栈的压入、弹出序列
    剑指offer——30包含min函数的栈
    剑指offer——29顺时针打印矩阵
    剑指offer——28对称的二叉树
  • 原文地址:https://www.cnblogs.com/arthas/p/4655046.html
Copyright © 2020-2023  润新知