我正在尝试使用转换后的googletts,似乎遇到了麻烦。我想我在结构方面正确地上课了。但我不认为NSURLConnection正在返回任何有用的数据。有人可以帮我检查一下它是否正常工作,如果不是为什么?
在connectiondidfinishloading部分,我正在检查下载长度 NSLog(@“hmmmm%lu”,(无符号长)[downloadedData length]) 返回0.这就是为什么我认为它不起作用。
目标是让应用说出所下载的内容
感谢!!!
我的视图控制器中只有一个按钮可以启动所有内容
#import <UIKit/UIKit.h>
#import <CoreLocation/CoreLocation.h>
#import "RJGoogleTTS.h"
@interface ViewController : UIViewController <CLLocationManagerDelegate>
@property (weak, nonatomic) IBOutlet UILabel *userLabel;
@property (strong, nonatomic) CLLocationManager *locationManager;
@property (strong, nonatomic) CLGeocoder *geoCoder;
@property (strong, nonatomic) RJGoogleTTS *googleTTS;
- (IBAction)geoCodeLocation:(id)sender;
- (IBAction)rjGoogleButton:(id)sender;
@end
这是实施文件
- (IBAction)rjGoogleButton:(id)sender {
googleTTS = [[RJGoogleTTS alloc]init];
[googleTTS convertTextToSpeech:@"How are you today user?"];
}
RJGoogleTTS.h
#import <Foundation/Foundation.h>
@protocol RJGoogleTTSDelegate <NSObject>
@required
- (void)receivedAudio:(NSMutableData *)data;
- (void)sentAudioRequest;
@end
@interface RJGoogleTTS : NSObject {
id <RJGoogleTTSDelegate> delegate;
NSMutableData *downloadedData;
}
@property (nonatomic, retain) id <RJGoogleTTSDelegate> delegate;
@property (nonatomic, retain) NSMutableData *downloadedData;
- (void)convertTextToSpeech:(NSString *)searchString;
@end
的.m
#import "RJGoogleTTS.h"
#import <AVFoundation/AVFoundation.h>
@implementation RJGoogleTTS
@synthesize delegate, downloadedData;
- (id)init
{
self = [super init];
if (self) {
// Initialization code here.
}
return self;
}
- (void)convertTextToSpeech:(NSString *)searchString {
NSString *search = [NSString stringWithFormat:@"http://translate.google.com/translate_tts?q=%@", searchString];
search = [search stringByReplacingOccurrencesOfString:@" " withString:@"%20"];
NSLog(@"Search: %@", search);
self.downloadedData = [[NSMutableData alloc] initWithLength:0];
NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:search]];
[request setValue:@"Mozilla/5.0" forHTTPHeaderField:@"User-Agent"];
NSURLConnection *connection = [[NSURLConnection alloc] initWithRequest:request delegate:self startImmediately:YES];
[delegate sentAudioRequest];
}
- (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response {
NSLog(@"did you receive response user");
[self.downloadedData setLength:0];
}
- (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data {
NSLog(@"did you receive data user");
[self.downloadedData appendData:data];
// AVAudioPlayer *audioPlayer = [[AVAudioPlayer alloc]initWithData:downloadedData error:nil];
// [audioPlayer play];
}
- (void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error {
NSLog(@"Failure");
}
- (void)connectionDidFinishLoading:(NSURLConnection *)connection {
NSLog(@"it worked user!!!");
[delegate receivedAudio:self.downloadedData];
NSLog(@"hmmmm %d", [self.downloadedData length]);
// NSString *txt = [[NSString alloc] initWithData:downloadedData encoding: NSASCIIStringEncoding];
// NSLog(@"%@hello",txt);
}
@end
答案 0 :(得分:2)
请记住,这是异步发生的。在致电downloadedData
后,您将NSURLConnection
的尺寸设为0。
移动:
self.downloadedData = [[NSMutableData alloc] initWithLength:0];
NSURLConnection
之前。
答案 1 :(得分:1)
您的NSURLConnection方法没有任何问题。您的搜索字符串错误。它应该是:
NSString *search = [NSString stringWithFormat:@"http://translate.google.com/translate_tts?tl=en&q=%@",searchString];
答案 2 :(得分:0)
你没有启动URLConnection。像这样更改[[NSURLConnection alloc] initWithRequest:request delegate:self];
[[NSURLConnection alloc] initWithRequest:request delegate:self startImmediately:YES];