Log Messages I didn't asked for in Xcode 4.5 with iOS 6.0

后端 未结 2 1259
谎友^
谎友^ 2020-12-04 16:03

since I updated Xcode to Version 4.5 and started building for iOS 6 log messages like this keep appearing:

ADDRESPONSE - ADDING TO MEMORY ONLY
2条回答
  •  执笔经年
    2020-12-04 16:39

    I have same issue as like you. I don't know but I did fixed it by using following formation in viewDidLoad method.

    -(void) viewDidLoad
    {
      // First write my code of UI Creation.
      // Then I call 
    
      [super viewDidLoad]; //add [super viewDidLoad] AFTER implementation, not before.
    }
    

    This is working well for me, hope this is also work for you.

提交回复
热议问题