tags:

views:

37

answers:

1

hello does anyone know a rating system that can be implemented for iphone detail view that allows user to rate the services offered. ive used touchcustoms however i cant figure out how to implement it...

A: 

searching for "Ratingview" google gave me this:

http://code.google.com/p/agautam-code/source/browse/trunk/iPhone/?r=7#iPhone/RatingView

looks quite nice

vikingosegundo
That's a good answer.
Michael
great thanks so much it really helped me out :)one small question i have on a sidenote to this projecthow would i make it remember the old rating generated by the user.here is the code that loads on startup[starView displayRating:1.5]; however i want it to be changed according to this -(void)ratingChanged:(float)newRating { ratingLabel.text = [NSString stringWithFormat:@"Rating is: %1.1f", newRating];can anyone show me how to do this please
Alex
@Alex: I am not very sure, what u mean. Is it about saving persistently or to use the same variable for the old and new value? case 1: See NSUserdefaults and CoreData case 2: just write it on a member variable in ur viewcontroller
vikingosegundo
@Michael: thanks! — dont hesitate and vote up ;)
vikingosegundo