I have basic doubt.I have to convert float minutes =( (10.09/60 ) % 60);
but error is invalid to binary expression(double to double).
how can I make this calculation easy..
What I am trying is firstly
float minutes =( (10.09/60 )
then trying to convert minutes into NSInterger to solve module (%) operation..
but how can I do this...or else suggest other solution to get this calculation..
float minutes =( (10.09/60 ) % 60);

fmodf()which is%for floats. – Slomojo Dec 20 '12 at 12:19