rt300@29: // rt300@29: // ServerComms.h rt300@29: // sonicZoom rt300@29: // rt300@29: // Created by Robert Tubb on 21/02/2013. rt300@29: // rt300@29: // rt300@29: rt300@29: #import rt300@29: rt300@29: @interface ServerComms : NSObject rt300@29: -(void)test; rt300@29: -(void)postRequest:(NSString *)msgbody; rt300@29: rt300@29: - (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response; rt300@29: - (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data; rt300@29: - (NSCachedURLResponse *)connection:(NSURLConnection *)connection willCacheResponse:(NSCachedURLResponse *)cachedResponse; rt300@29: @end