• ios 学习笔记 4


    1. 常见问题

      a,为什么创建的UIButton 点击不了,没有反应?

         原因可能是:UIView 在initWithFrame时候没有小了,超出UIWindow 区域。

      

         b, presentModalViewController动画效果

       modalTransitionStyle = UIModalTransitionStyleFlipHorizontal;

      [self dismissModalViewControllerAnimated:YES];

        c, 为什么NSDictionary的键值总是null

       初始化数字的时候最好不要直接赋值,要像这样[NSNumber numberWithInt:0 ]

        d, loadView为什么会不停的执行(循环)

        如下:

      

    - (void)loadView
    {
    HelloView *helloView=[[[HelloView alloc] init]autorelease];

    [helloView setNeedsDisplay];
    [self.view addSubview:helloView];

    }

       是因为缺少 [super loadView];

    正确的是

    - (void)loadView
    {
    [super loadView];
    HelloView *helloView=[[[HelloView alloc] init]autorelease];

    [helloView setNeedsDisplay];
    [self.view addSubview:helloView];

    }



         

  • 相关阅读:
    Python3 学习第八弹: 模块学习一之模块变量
    Python3 学习第六弹: 迭代器与生成器
    Python3 学习第五弹:类与面向对象
    Java之泛型
    Java之工具类Collections
    Java之map
    Java集合之List
    Java集合之TreeSet
    Java集合
    Java异常处理
  • 原文地址:https://www.cnblogs.com/hubj/p/2327969.html
Copyright © 2020-2023  润新知