#import <AVFoundation/AVFoundation.h>
// 点击事件里读文字
-(void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event{
AVSpeechSynthesizer *synthesize = [[AVSpeechSynthesizer alloc]init];
AVSpeechUtterance *utterance = [[AVSpeechUtterance alloc]initWithString:@"Will you marry me ?"];
[synthesize speakUtterance:utterance];
}
网友评论