IFlyRecognizerViewDelegate.h 746 B

123456789101112131415161718192021222324252627282930313233343536
  1. //
  2. // IFlyRecognizerDelegate.h
  3. // MSC
  4. //
  5. // Created by admin on 13-4-16.
  6. // Copyright (c) 2013年 iflytek. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @class IFlyRecognizerView;
  10. @class IFlySpeechError;
  11. /*!
  12. * 识别回调委托
  13. */
  14. @protocol IFlyRecognizerViewDelegate <NSObject>
  15. /*!
  16. * 回调返回识别结果
  17. *
  18. * @param resultArray 识别结果,NSArray的第一个元素为NSDictionary,NSDictionary的key为识别结果,sc为识别结果的置信度
  19. * @param isLast -[out] 是否最后一个结果
  20. */
  21. - (void)onResult:(NSArray *)resultArray isLast:(BOOL) isLast;
  22. /*!
  23. * 识别结束回调
  24. *
  25. * @param error 识别结束错误码
  26. */
  27. - (void)onCompleted: (IFlySpeechError *) error;
  28. @optional
  29. @end