美文网首页
3.关于removeFromSuperview和addSubvi

3.关于removeFromSuperview和addSubvi

作者: 小笨憨 | 来源:发表于2017-06-07 15:19 被阅读0次
    - (void)removeFromSuperview 官方API 说明
    Unlinks the receiver from its superview and its window,and removes it from the responder chain.
    - Discussion:
    If the recuiver's superview is not nil, the superview releases the receiver. If you plan to reuse a view, be sure to retain it before calling this method and releas it again later as appropriate.
    - important:
    Never all this method from inside your view's drawRect:method.
    

    译:把当前view从它的父view和窗口中移除,同时也把它从响应时间操作的响应者链中移除。如果当前view对象的父视图不为空,则父视图会release一次当前视图对象。如果你还想重用当前view,你应该在调用removeFromSuperview之前,retain一次当前view对象,但不要忘记,在恰当的时候要release它,以确保没有内存泄露。
    永远不要在你的view的dramRect方法中调用removeFromSuperview;

    从官方 API 中可以看出一个view的操作关系到两个方法,视图结构和响应者链,当调用此方法时,当前view并其subviews一同移除视图及时间响应。
    一般情况下在ARC中不需要将其指针置为nil,因为这些都是系统在管理,当前控制器dealloc时,系统自动回收。但很多时候,viewcontroller的实例变量调用此方法后,还会将实例变量置为nil。如以下情况

    // 第一种
    if (firstTableView != nil) {
        [_firstTableView removeFromSuperview];
    }
    // 第二种
    if (firstTableView != nil) {
        [_firstTableView removeFromSuperview];
        _firstTableView = nil;
    }
    
    - (void) refreshForView 
    {
        if (_firstTableView == nil) {
    
            [slef configureFirstTableView];
        }
    }
    

    当执行refreshForView 方法来重新添加该控件时,就可以看出明显区别了,第二种情况下,重新添加该控件判断时,——firstTableView 肯定为nil,所以会进行再次创建。第一种,虽然——firstTableView 已经从页面上移除了,但其指针还并不为nil,因为当前控制器还没有回收这些指针,故在重新添加该控件判断时,_firstTableView 并不会重新创建,造成该控件丢失显示的问题。
    总结,在实际开发过程中,遇到 removeFromSuperview 的时候,在需要拿当前指针来进行判断的情况下,移除后需要将指针置为nil,不需要进行判断的情况下,系统会自动管理好这些指针。

    -(void)addSubview 官方API说明: 
    Adds a view to the end of the receiver’s list of subviews. 
    - Discussion: 
    This method establishes a strong reference to view and sets its next responder to the receiver, which is its new superview. 
    Views can have only one superview. If view already has a superview and that view is not the receiver, this method removes the previous superview before making the receiver its new superview.
    

    添加视图至当前视图的子视图中的最顶层
    这个方法建立一个强引用至要添加的视图,并设置他的下一个响应者到他的父视图。
    视图只可以拥有一个父视图,如果视图已经有一个父视图,之前的父视图不再是接受者,这个方法在添加都新的父视图之前会先从旧视图上移除。

    所以当执行addSubview方法时,因为父视图对view的强引用,故view会增加一次引用计数。同样的,执行removeFromSuperview 方法时,view会release一次。

    相关文章

      网友评论

          本文标题:3.关于removeFromSuperview和addSubvi

          本文链接:https://www.haomeiwen.com/subject/vnzofxtx.html