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
2010-08-09 20:00:03
That's a good answer.
Michael
2010-08-10 04:47:49
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
2010-08-10 06:41:36
@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
2010-08-10 15:28:41
@Michael: thanks! — dont hesitate and vote up ;)
vikingosegundo
2010-08-10 15:30:04