Featured post

c# - Usage of Server Side Controls in MVC Frame work -

i using asp.net 4.0 , mvc 2.0 web application. project requiremrnt have use server side control in application not possibl in noraml case. ideally want use adrotator control , datalist control. i saw few samples , references in codepleax mvc controllib howwver found less useful. can tell how utilize theese controls in asp.net application along mvc. note: please provide functionalities related adrotator , datalist controls not equivalent functionalities thanks in advace. mvc pages not use normal .net solution makes use of normal .net components impossible. a normal .net page use event driven solution call different methods service side mvc use actions , view completly different way handle things. also, mvc not use viewstate normal .net controlls require. found article discussing mixing of normal .net , mvc.

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 ...


Comments

Popular posts from this blog

c# - Usage of Server Side Controls in MVC Frame work -

cocoa - Nesting arrays into NSDictionary object (Objective-C) -

ios - Very simple iPhone App crashes on UILabel settext -