Featured post
iphone - xcode debugging goes back and forth during stepping through the code -
i have weird problem xcode 3.2.5
in normal code sequence xcode steps couple of lines continues, again , continues again during step mode.
this happens in 1 project, there in files. here example:
when jumping in function xcode goes through lines in following sequence: 2 -> 1 -> 2 -> 3 ->5 -> 8 -> 3 -> 4 -> 5 -> 6 -> 7 ->...
i dont understand going on here. please have idea?
rebooting machine , iphone doesn't help.
by way, complete code works fine , runs without errors. seems cursor goes lines code not being executed. if line entered twice cursor, second time changes variables in assignments etc..
really weird!
thanks hint...
1 - (void)viewwillappear:(bool)animated { // d_in; 2 [super viewwillappear:animated]; //get datamanager global object, have structured accesss data! 3 webiappdelegate *maindelegate = (webiappdelegate *)[[uiapplication sharedapplication]delegate]; 4 self.webidatamanager = maindelegate.webidatamanager; 5 message.hidden = yes; 6 message.text = @""; 7 message.userinteractionenabled = no; ...
i agree comments. looks you're trying debug optimized code. try compiling no optimization , debugger should behave more sensibly.
e.g. gcc -o0 ...
- Get link
- X
- Other Apps
Comments
Post a Comment