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 - UIView's are not positioning correctly -


i have nib 2 uiviews , 2 uilabels iboutlet's in controller.

i increasing , decreasing height of these uiviews bar indicate when 100% or less - bar chart almost.

i using following method both bars (reuse) first uiview (bar) positions correctly second low down - y axis wrong. height of both correct.

anyone have ideas? have positioned them in interface builder doing in method changing height (basically)

//position point, size , label of rating bar - (void)configureratingbar:(uiview *)vratingbar              andratinglabel:(uilabel *)lratinglabel                usingrating:(nsdecimalnumber *)rating {     //nsdecimalnumber *foodrating = [self calculaterating:self.currenthotel.foodandbeveragerating];     nsstring *formattedrating = [self formatrating:rating];     lratinglabel.text = formattedrating;      float newheight = [rating floatvalue]; //the height based on rating 100 max     cgrect currentframe = vratingbar.frame; //current frame of rating view      //cgpoint currentpoint =      //  [vratingbar convertpoint:vratingbar.frame.origin toview:vreviews];         cgpoint currentpoint = vratingbar.frame.origin; //current point of rating view     float newyaxis = currentpoint.x + (100 - newheight); //y axis must move down decreasing rating 0 (100 %) down      [vratingbar setframe:cgrectmake(currentpoint.x, newyaxis, currentframe.size.width, newheight)];      [lratinglabel setframe:cgrectmake(currentframe.size.width / 34, newheight - 20, 34, 21)];     } 

i see have line:

float newyaxis = currentpoint.x + (100 - newheight); //y axis must move down decreasing rating 0 (100 %) down 

where using currentpoint.x calculation. should currentpoint.y?


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 -