ISEResultFinal.m 323 B

123456789101112131415161718
  1. //
  2. // ISEResultFinal.m
  3. // IFlyMSCDemo
  4. //
  5. // Created by 张剑 on 15/3/7.
  6. //
  7. //
  8. #import "ISEResultFinal.h"
  9. @implementation ISEResultFinal
  10. -(NSString*) toString{
  11. NSString* resultString=[NSString stringWithFormat:@"Returned Value:%d,Total Score:%f",self.ret,self.total_score];
  12. return resultString;
  13. }
  14. @end