Sha256: caf4699fffd42fe8b04971f501a984e13d8ec50cdebf6b0fd9521d78b1935b11
Contents?: true
Size: 906 Bytes
Versions: 76
Compression:
Stored size: 906 Bytes
Contents
// // RhodesController.h // Runner // // Created by rhomobile on 9/10/09. // Copyright 2009 __MyCompanyName__. All rights reserved. // #import <Foundation/Foundation.h> @interface RhodesController : NSObject { IBOutlet NSWindow *window; IBOutlet NSTextField *downloadSize; NSMutableData *dataAccumulator; NSURLConnection *webConnection; } - (IBAction)reload:(id)sender; - (void) applicationDidFinishLaunching:(NSNotification *)notification; - (void) relaunchEmulator; //The following are delegate methods for NSURLConnection - (void) connection:(NSURLConnection *)connection didReceiveData:(NSData *)data; - (void) connectionDidFinishLoading:(NSURLConnection *)connection; - (NSCachedURLResponse *)connection:(NSURLConnection *)connection willCacheResponse:(NSCachedURLResponse *)cachedResponse; - (void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error; @end
Version data entries
76 entries across 76 versions & 1 rubygems